Tagged Questions
The platform-independence tag has no wiki summary.
4
votes
8answers
590 views
How does program execute? Where does the Operating Systems come into play?
A program is compiled from some language to ASM --> Machine Code (directly executable). When people say that this is platform dependent, the mean that the binaries formed will run (correctly) only on ...
3
votes
3answers
3k views
Passing environment variables to a JVM, in a platform-independent manner
I'm developing a J2EE application that runs in JBoss on a Windows Vista machine, but the application will end up on a Linux machine. Is there a way to pass in the value of an environment variable in a ...
2
votes
2answers
94 views
Platform independent way to fire off external applications/helpers by file type?
For example, one application that I'm working on stores PDF files into a database, then can pull them back out for display. I've got a call in there using Runtime.exec to do a "cmd /c start " plus ...
1
vote
1answer
55 views
Platform independent parallelization without changing the framework?
I hope the title did not mislead you.
My problem is the following: Currently I try to speed up a raytracer and this is done with the help of the graphics card. It works fine despite the fact that it ...
0
votes
3answers
72 views
System-independent machine shutdown in Java [closed]
Possible Duplicate:
Shutting down a computer using Java
I am making a personal program that will shut down my computer after a certain amount of time or at a certain time/date. However, I ...