From what I understand Eclipse Indigo 3.7.1 should now have support for Java 7.

I downloaded Eclipse 3.7.1. and JDK 1.7.0 and added JRE7 in the settings in Eclipse. Then I created a new project using JRE7 and wrote a short Java 7 program:

public class Test7 {

    public static void main(String[] args) {
        String k = "Hello";
        switch(k) {
        case "World": System.out.println("World Hello");
            break;
        case "Hello": System.out.println("Hello World");
            break;
        }
    }
}

Start a Java 7 project

But I get an error when I try to use a String in a Switch statement. The error in Content assist looks like this:

Content assist error

Have I done anything wrong or doesn't Eclipse 3.7.1 have support for Java 7 yet? Is there any settings in Eclipse I need to change?

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

You also have to change the compiler compliance settings under "Preferences | Java | Compiler | JDK Compliance." Setting the JDK for the project only sets the libraries to compile against and the JDK used to run the project.

link|improve this answer
1  
+1 Also, you might want to use a JDK for development instead of a JRE. – Axel Knauf Sep 25 '11 at 13:09
Hmmm. I thought it was indeed done, but maybe not: wiki.eclipse.org/JDT_Core/Java7 – Ernest Friedman-Hill Sep 25 '11 at 17:35
1  
@Ernest: You are right, I started Eclipse 3.7.0 when I tested. But now in 3.7.1 it works fine. Thanks! – Jonas Sep 25 '11 at 17:59
feedback

Your Answer

 
or
required, but never shown

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