OK I've searched this forum and apple's site on how to get Java 1.5 working and no matter what I can't get it to be the default java version used. Can someone please tell me what to do? Thank you very much.
Other than changing it in Java Preferences within /Applications/Utilities/Java, I don't know. Some applications I've tried won't use it, for whatever reason.
Other than changing it in Java Preferences within /Applications/Utilities/Java, I don't know. Some applications I've tried won't use it, for whatever reason.
You could make an alias by editing your .bash_profile (located in your home directory; if it's not there, just create it) to include the following:
Code:
alias java5="/System/Library/Frameworks/JavaVM.framework/Versions/1.5/Commands/java"
alias javac5="/System/Library/Frameworks/JavaVM.framework/Versions/1.5/Commands/javac"
After closing and reopening your open Terminal window (or typing "source ~/.bash_profile"), you could then type:
Code:
javac5 HelloWorld.java
java5 HelloWorld
If you don't like typing that extra "5" at the end, you can have the alias simply be "java" instead of "java5" - I just prefer not to override the default, but I don't think there's any harm in doing so. You can always go back to the way it was before by removing those lines from .bash_profile.
Awesome, thank you very much that worked perfectly, and is exactly what I wanted because I was starting to wonder if I could do something like that in order to get this working. Thank you all very much.