About 3,670,000 results
Open links in new tab
  1. java - What does a "Cannot find symbol" or "Cannot resolve …

    Another example of this is when you use (Java 9+) java SomeClass.java to compile and run a class. If the class depends on another class that you haven't compiled (or recompiled), you are …

  2. java - How do I tell Gradle to use specific JDK version ... - Stack ...

    java { toolchain { languageVersion.set(JavaLanguageVersion.of(11)) } } This can also be set for individual tasks. NOTE: For other tasks relying on a Java executable or Java home, use the …

  3. java - How to tell if JRE or JDK is installed - Stack Overflow

    Mar 20, 2014 · javac -version // this will check your java compiler version (JDK) if you installed this should show you the version of java installed on the system (assuming that you have set the …

  4. java - What version of javac built my jar? - Stack Overflow

    How can I tell what version of the Java compiler was used to build a jar? I have a jar file, and it could have been built in any one of three JDKs. We need to know exactly which one, so we …

  5. How do I make a JAR from a .java file? - Stack Overflow

    Perhaps the most beginner-friendly way to compile a JAR from your Java code is to use an IDE (integrated development environment; essentially just user-friendly software for development) …

  6. Is Java a Compiled or an Interpreted programming language

    Aug 25, 2009 · 290 Java implementations typically use a two-step compilation process. Java source code is compiled down to bytecode by the Java compiler. The bytecode is executed by …

  7. java - how to check the jdk version used to compile a .class file ...

    Btw, the reason that you're having trouble is that the java compiler recognizes two version flags. There is -source 1.5, which assumes java 1.5 level source code, and -target 1.5, which will …

  8. java - Lombok annotations do not compile under Intellij idea

    When I click on Build -> Rebuild project whenever I am using Eclipse compiler to compile java sources inside intellij Idea lombock annotations are not processed and project has numerous …

  9. How to find and change Java compiler option in Visual Studio Code?

    Jul 2, 2019 · After installing the JDK, you would need to configure your environment for Java development. The most common way is to set JAVA_HOME environment variable to the install …

  10. eclipse - Java compiler level does not match the version of the ...

    Oct 21, 2015 · In my case, in the project properties, Java compiler, the JDK compliance was set to use the workspace settings, which were different from the java version for the project.