OK. This is a newbie question but I can't figure it out...

I would like to use the WatchService API as mentioned in this link: http://download.oracle.com/javase/tutorial/essential/io/notification.html

After reading around, I found out that WatchService is part of the NIO class which is scheduled for JDK 7. So, it is in beta form. It's fine.

http://jdk7.java.net/download.html has the JDK which I downloaded and extracted. I got a bunch of folders. I don't know what to do with them.

Then, I read around some more and found that some nice group of people created JDK 7 as a binary so someone like me can install it easily. It is called Open JDK: http://code.google.com/p/openjdk-osx-build/

So, I downloaded the .dmg file and instal it. Then I open "Java Preference" and see that OpenJDK7 is available.

So, now I feel that I can start trying out WatchService API. From the tutorial in the first link, the author gave a .java file to test it out first and make sure that it is running. Here is the link to the file: http://download.oracle.com/javase/tutorial/essential/io/examples/WatchDir.java

So, I boot up Eclipse (actually I use STS) and create a new Java project and choose JaveSE-1.7 in the "use an execution environment JRE:". Under the src folder, I copy pasted the WatchDir.java file.

And I still see tons of squiggly red lines. All the "import.java.nio.*" are all red and I cannot run it as a Java app.

If you read this far, thanks a lot. So, now...

What do I need to do?

Thanks.

EDIT: I actually did not pursue using Java 7 but there are a lot of interest in it and it seems like people keep answering this question. What should I do to make it more relevant to people who search for it? Let me know by PMing me. Thanks.

link|improve this question

Can you run and compile it on the console? – dmeister Jun 7 '11 at 15:26
You mean: $javac WatchDir.java and then $ Java WatchDir? I will try that. Thanks! Although I would love to have it to be available in Eclipse IDE. – Yko Jun 7 '11 at 15:31
1  
From today there is an official Oracle release - Java SE 7u4 – Mark Apr 27 at 21:29
feedback

10 Answers

up vote 3 down vote accepted

Oracle has released JDK 7 update 4 for OS X.

http://www.oracle.com/technetwork/java/javase/downloads/jdk-7u4-downloads-1591156.html

link|improve this answer
I will update the answer with the latest information. Please let me know if this is not the right answer. Thanks. – Yko May 4 at 9:48
@Yko - look at BasilBourque's for the most complete info (or mine for the first Oracle JDK7 version 4) – Mark May 14 at 13:59
feedback

This is how I got 1.7 to work with Eclipse. I hope it helps.

  1. I Downloaded the latest OpenJDK 1.7 universal (32/64 bits) JDK from Mac OS/X branch from http://code.google.com/p/openjdk-osx-build/downloads/list
  2. copied the jdk to /System/Library/Java/JavaVirtualMachines/ next to the default 1.6.0 one
  3. In Eclipse > Preferences > Java > Installed JREs you add a new one, of type MacOS X VM, and set the home as /System/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home and name Java SE 7 (OpenJDK)
  4. Click Finish
  5. Set the added JRE as default

that should be it :)

link|improve this answer
It works! Thanks – Çağatay Gürtürk Jan 24 at 19:11
thanks my elcipse completely hung.. so i tried to use sdk 1.7 worked perfectly! :=) – cV2 Apr 15 at 22:21
4  
-1 because you should never install a JDK (or anything else you want to keep) in /System/Library/Java as Apple reserves the right to overwrite or delete it in the future. Always use /Library/Java/JavaVirtualMachines. Rest of the answer is good, though. – Scott K. Apr 27 at 13:46
feedback

I know that some may want to smack me for re-opening old post, but if you feel so do it I just hope this may help someone else trying to set JDK 7 on Mac OS (using IntelliJ).

What I did to get this working on my machine is to:

  • followed instructions on Oracle JDK7 Mac OS X Port for general installation
  • in IntelliJ open/create new project so you can add new SDK (File > Project Structure)
  • select Platform Settings > SDKs, press "+" (plus) sign to add new SDK
  • select JSDK and navigate to /Library/Java/JavaVirtualMachines/JDK 1.7.0 Developer Preview.jdk/Contents/Home. Do not get it mistaken with */Users/YOUR_USERNAME/Library/Java/*. This will link 4 JARs from "lib" directory (dt.jar, jconsole.jar, sa-jdi.jar and tools.jar)
  • you will need also add JARs from /Library/Java/JavaVirtualMachines/JDK 1.7.0 Developer Preview.jdk/Contents/Home/jre/lib (charsets.jar, jce.jar, JObjC.jar, jsse.jar, management-agent.jar, resources.jar and rt.jar)
link|improve this answer
feedback

It's possible that you still need to add the JDK into Eclipse (STS). Just because the JDK is on the system doesn't mean Eclipse knows where to find it.

Go to Preferences > Java > Installed JREs

If there is not an entry for the 1.7 JDK, add it. You'll have to point Eclipse to where you installed your 1.7 JDK.

If Eclipse can't find a JRE that is 1.7 compatible, I'm guessing that it just uses your default JRE, and that's probably still pointing at Java 1.6, which would be causing your red squiggly lines.

link|improve this answer
Good Call! But I need a little bit further guidance. I go under Installed JREs -> Add and point to .../jdk1.7.0/jre and it found a bunch of JAR files. I click Finish. Happily tries to build but now it says .../jdk1.7.0/jre/bin/java: cannot execute binary file. What does that mean? – Yko Jun 7 '11 at 15:56
I'm not really sure. You could try pointing eclipse at the base jdk directory instead of the jre directory. I think that's how I've usually done it on Windows, though I haven't ever switched off the default JDK on my Mac. If that doesn't work, you could try installing a different distribution of JDK 7 - there were a few different ones available at the openjdk-osx-build site, maybe you grabbed one that isn't compatible with your system? – Jon Quarfoth Jun 7 '11 at 17:53
I have tried that. It gives me the error of "Target is not a JDK root. System library was not found" – Yko Jun 7 '11 at 18:48
feedback

Oracle announced the official release of the JDK for Java SE 7 Update 4 on Mac OS X (Lion), as of 2012-04-26. No more need for the tricks discussed on this page.

Installation is simple per these instructions:

  1. Download from the usual place on the Oracle web site.
  2. Mount the DMG.
  3. Run the installer.

This release has a few limitations, most notably the lack of support for Web Start and the Java Plugin for web browsers. That support is expected later this year.

After installing, read the JDK for Mac ReadMe. Most importantly, if you want Java 7 to be the default, drag it to the top of the list in the Java Preferences app found in your Utilities folder.

Mac OS X easily supports multiple JVMs simultaneously. Each is now found here:

/Library/Java/JavaVirtualMachines

Congratulations to the Apple & Oracle teams for their achievement. This geek gets a thrill seeing Mac OS X listed as a "Certified System Configuration".

By the way, Apple provides a mailing list for developers’ technical issues related to Java on OS X.

link|improve this answer
feedback

How about Netbeans, here is an article how to set it up with NB7:

http://netbeanside61.blogspot.com/2011/06/downloading-openjdk7-binary-for-mac-os.html

Maybe similar steps for Eclipse.

link|improve this answer
I have used netbeans in the past and i will give it a try. Thanks for the link. – Yko Jul 26 '11 at 19:19
feedback

As of April 27th there is an offical Oracle release of Java SE 7u4. Download the disk image and run the installer - then see the Mac readme.

link|improve this answer
feedback

The father of Java James Gosling mentioned that SDK 7 have not yet a support for OS X in his blog here.

link|improve this answer
1  
There is a port in progress and the Yko has downloaded it. – dmeister Jun 7 '11 at 15:25
feedback

Unfortunately I cannot comment on "I have tried that. It gives me the error of "Target is not a JDK root. System library was not found" – Yko Jun 7 at 18:48" as I am new to StackOverflow. I had that problem and solved it:

The entry in line "JRE home" is something like /System/Library/Java/JavaRuntimeEnvironments/, right? You can edit that line manually. Just add 1.7.0.jdk/Home/ (where 1.7.0.jdk is the name of the jdk7 file - it may be different in your case). After editing this path, you should see all the entries in "JRE system libraries" coming up. Click "Finish". Select the new JDK in the "Installed JREs" tab.

You might need to update your BuildPath configurations as well (right click on project, "Build path" > "Configure Build Path..."). Go to the tab "Libraries", click "Add Library...", select "JRE System Library" and make sure jdk7 is selected somewhere in this window (in my case it was set as default at the very bottom of this dialog). Click "Finish", exit the configuration window. It should all work now.

link|improve this answer
feedback

The instructions by peter_budo worked perfectly. I had to add the jars under /Library/Java/JavaVirtualMachines/JDK 1.7.0 Developer Preview.jdk/Contents/Home/jre/lib/ to my IntelliJ project libraries. Now it works like a charm. Note that I didn't need my IDE itself to run under 1.7; rather, I only needed to be able to compile and run against 1.7. I'll most likely continue to use Apple's JRE for running the IDE since it's probably more stable with respect to graphics routines (Swing, AWT). Like the OP, I was really keen on testing out the new NIO2 API. Looking good so far. Thanks, Peter.

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.