Start using Java out of the box on Mac OS X. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T05:11:16Z http://stackoverflow.com/feeds/question/1071287 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1071287/start-using-java-out-of-the-box-on-mac-os-x 2 Start using Java out of the box on Mac OS X. dlamblin 2009-07-01T20:40:58Z 2009-07-07T03:32:59Z <p>My 10.5.3 install on a MacBook doesn't seem to want to build <a href="http://java.sun.com/docs/books/tutorial/essential/regex/test%5Fharness.html" rel="nofollow">an example</a> from Sun. It claims it can't find java.io.Console to import. This is annoying to me, and after much searching I can't figure out what I should do to fix it.</p> <p>I have installed the Apple Developer Tools.</p> <p>Here's what happens:</p> <pre><code>macbook:~ dlamblin$ javac RegexTestHarness.java RegexTestHarness.java:32: cannot find symbol symbol : class Console location: package java.io import java.io.Console; ^ RegexTestHarness.java:39: cannot find symbol symbol : class Console location: class RegexTestHarness Console console = System.console(); ^ RegexTestHarness.java:39: cannot find symbol symbol : method console() location: class java.lang.System Console console = System.console(); ^ 3 errors </code></pre> http://stackoverflow.com/questions/1071287/start-using-java-out-of-the-box-on-mac-os-x/1071310#1071310 4 Answer by John Munsch for Start using Java out of the box on Mac OS X. John Munsch 2009-07-01T20:45:28Z 2009-07-01T20:45:28Z <p>mmyers already hinted at this, but it sounds like you've not upgraded to Java 6. You can get it from here: <a href="http://support.apple.com/downloads/Java%5Ffor%5FMac%5FOS%5FX%5F10%5F5%5FUpdate%5F4" rel="nofollow">http://support.apple.com/downloads/Java_for_Mac_OS_X_10_5_Update_4</a></p> http://stackoverflow.com/questions/1071287/start-using-java-out-of-the-box-on-mac-os-x/1071325#1071325 3 Answer by William Brendel for Start using Java out of the box on Mac OS X. William Brendel 2009-07-01T20:50:19Z 2009-07-01T20:50:19Z <p>I assume you have already installed Java 6 on your machine, because <a href="http://www.stupidjavatricks.com/?p=43" rel="nofollow"><code>java.io.Console</code></a> is a Java 1.6 class. I have run into cases where I update OS X to Java 6, but when run from a command line, the older version is still used. This has happened even after adjusting the Java Preferences app (Applications > Utilities > Java Preferences).</p> <p>Here is how I worked around it.</p> <pre><code>$ cd /System/Library/Frameworks/JavaVM.framework/Versions $ sudo rm CurrentJDK $ sudo ln -s 1.6.0 CurrentJDK </code></pre>