aspose file tools
The moose likes Java in General and the fly likes How can I develop java code for all platforms/OS  ?. Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "How can I develop java code for all platforms/OS  ?." Watch "How can I develop java code for all platforms/OS  ?." New topic
Author

How can I develop java code for all platforms/OS ?.

Praveen Kumar
Ranch Hand

Joined: Nov 06, 2006
Posts: 133
Hi All,


In an interview, I faced above question and I answered that JVM is platform dependent and there is separate JVM for each OS. So we need to run the code in respective JVM then we can use same java code in
all OS. I hope i said is correct answer .. Then interviewer asked me that Do we have any rules to follow in java coding ?. Here I am not aware the rules we need to follow.

Please tell me what rules we need to take care when ever your developing java code for all platforms ?.






Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32599
    
    4
Avoid OS specific features, eg thread priorities, use of \n and \r, use of \\ or / between files, use of ; or : between paths.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: How can I develop java code for all platforms/OS ?.
 
Similar Threads
JVM doubt
basic query
Need info on Java platform independence
JDK, JVM and JRE
Is JDK same for all platforms(windows,unix,mac) or is it different for different operating systems.