up vote 5 down vote favorite
2
share [g+] share [fb]

are there any things that once can do ignorantly that can prevent a java web application from being cross platform? (windows/linux/mac)

Tools I am planning to use are java/spring framework/hibernate

link|improve this question

55% accept rate
feedback

4 Answers

  • Hard-coding file separators/paths.
  • Using native libraries.
  • Using Runtime.exec()
  • Using sun.* classes (this may cause portability issues with non-Sun JVMs).
link|improve this answer
2  
+1 for the hard-coding of file separators -- those are brain-dead killers on a lot of apps that have no reason otherwise not to work cross-platform. – delfuego Jan 4 '10 at 20:26
Using sun.* (and most com.sun.*) classes may well cause portability between update releases. Don't do it! – Tom Hawtin - tackline Jan 4 '10 at 21:19
how would you not hard code seperators? using a .xml config file or? – mrblah Jan 4 '10 at 21:37
4  
@mrblah: try java.io.File.separator – karoberts Jan 4 '10 at 21:48
feedback

not honoring case-sensitivity in filesystem

link|improve this answer
feedback

Using system default character encoding for input/output when inappropriate

link|improve this answer
feedback

In addition to what Dan Dyer said:

  • calling executables by a fixed path or of a fixed name
  • assuming a certain shell command syntax will work properly (eg 2>&1 or something)
  • deleting or renaming a file that some other process (or the same one!) might have open
  • Making assumptions about the working directory (eg using relative paths to load resouces from the file system)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.