About 545,000 results
Open links in new tab
  1. java was started but returned exit code = -805306369

    Mar 19, 2014 · 1 “java was started but returned exit code = -805306369” caused by Eclipse´s currupted workspace, I solved my problem with this 4 steps: 1) claose the eclipse. 2) Kill the …

  2. 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 …

  3. java - What is a NullPointerException, and how do I fix it? - Stack ...

    As you should know, Java types are divided into primitive types (boolean, int, etc.) and reference types. Reference types in Java allow you to use the special value null which is the Java way of …

  4. exception - Error class in Java - Stack Overflow

    Aug 9, 2013 · I am trying to understand the Error class in Java. I have a good understanding of the Exception class, but can't find examples of code for the Error class. I've tried ...

  5. Java: Error: variable might not have been initialized

    Java will not give a default value to a local variable, even if it gives default values to class variables and instance variables. Section 4.12.5 of the JLS covers this:

  6. Java Error: Should be declared in a file named - Stack Overflow

    Apr 30, 2012 · CalculatorWithMemory.java:1: class Calculator is public, should be declared in a file named Calculator.java public class Calculator So my thought was that this means that I …

  7. Error:could not create the Java Virtual Machine Error:A fatal …

    May 12, 2016 · c:\Users\Onlymanu>java --version Unrecognized option: --version Error: Could not create the Java Virtual Machine. Error: A fatal exception has occurred. Program will exit. But …

  8. What does "Could not find or load main class" mean?

    Aug 7, 2013 · A typical Java IDE has support for running Java applications in the IDE JVM itself or in a child JVM. These are generally immune from this particular exception, because the IDE …

  9. dll - Java Error opening registry key - Stack Overflow

    On Windows 10 I had just installed the JDK, and got these errors when checking the version. I had to delete all executable files starting with java (i.e. java.exe, javaw.exe and javaws.exe) …

  10. Error: class X is public should be declared in a file named X.java

    I am trying to write a program, but I'm getting this compiler error: Main.java:1: error: class WeatherArray is public, should be declared in a file named WeatherArray.java public class …