hi, can anyone plz suggest how to run codes written in java which involve packages to run on linux platform? do i have to modify my code according to Machines? but i dont think that it will be then correct to say anything about java's platform indepenedence... rasap thanx
Michael Szul
Ranch Hand
Joined: Sep 18, 2001
Posts: 57
posted
0
I don't quite get what your trying to say. As long as you have the Linux version of the SDK you can compile and run the Java like you normally would on the command line with javac and java. Or for jar packages you would say java -jar *.jar as long as Main-Class is specified in the jar manifest.