java errors
java errors
Don't pay any attention to the number of errors. Just read the first error message and work on
fixing that error. (Every now and then, the second error message will help you fix the first error.)
These errors are often caused by very small mistakes that are easy to miss, so there's no shame in
having someone else help you find the mistake.
illegal start of type You wrote a statement that does not appear inside a method body.
Make sure you understand why it found what it did, and why it
incompatible types -- expected type
expected what it did.
missing method body Your method declaration line has a semicolon.
The compiler found a pathway through your non-void method that
missing return statement
does not reach a return statement.
non-static method cannot be You called a method on a class name, instead of on a specific
referenced from a static context instance of that class.
possible loss of precision You assigned a double value to an int variable.
reached end of file while parsing You're missing a closing brace at the end of the file.
unexpected type -- required variable You used = instead of ==.
You wrote this statement after a return statement. Remember that
unreachable statement
return statements return from the method immediately.
variable might not have been The compiler found a pathway through your method where you
initialized access the value of a variable before you've assigned anything to it.
Run-Time Errors (Crashes)
Now, we might guess that the bug is in move, since that's where the program crashed. But we
probably trust that the move method has been carefully tested, so we must have called move in an
inappropriate manner. Specifically, we must have violated the move method's precondition, by
calling move when the front of the robot was blocked. So, we back up to line 13 of Lesson.java,
where we called the move method. Now we need to step back and think. Was climbOneStair
correct in calling move? If not, we should fix the bug in climbOneStair But if climbOneStair
was correct, maybe we called climbOneStair when we shouldn't have, and the bug is in
climbAllStairs ...
Lesson: Common Problems (and Their Solutions)
Compiler Problems
If you receive this error, Windows cannot find the compiler (javac).
Here's one way to tell Windows where to find javac. Suppose you installed the JDK in C:\
jdk1.8.0. At the prompt you would type the following command and press Enter:
C:\jdk1.8.0\bin\javac HelloWorldApp.java
If you choose this option, you'll have to precede your javac and java commands with C:\
jdk1.8.0\bin\ each time you compile or run a program. To avoid this extra typing, consult the
section Updating the PATH variable in the JDK 8 installation instructions.
If you receive this error, you forgot to include the .java suffix when compiling the program.
Remember, the command is javac HelloWorldApp.java not javac HelloWorldApp.
If you receive this error, UNIX cannot find the compiler, javac.
Here's one way to tell UNIX where to find javac. Suppose you installed the JDK in
/usr/local/jdk1.8.0. At the prompt you would type the following command and press Return:
/usr/local/jdk1.8.0/javac HelloWorldApp.java
Note: If you choose this option, each time you compile or run a program, you'll have to precede
your javac and java commands with /usr/local/jdk1.8.0/. To avoid this extra typing, you
could add this information to your PATH variable. The steps for doing so will vary depending on
which shell you are currently running.
If you receive this error, you forgot to include the .java suffix when compiling the program.
Remember, the command is javac HelloWorldApp.java not javac HelloWorldApp.
Sometimes the compiler can't guess your intent and prints a confusing error message or multiple
error messages if the error cascades over several lines. For example, the following code snippet
omits a semicolon (;) from the bold line:
When processing this code, the compiler issues two error messages:
The compiler issues two error messages because after it processes count++, the compiler's state
indicates that it's in the middle of an expression. Without the semicolon, the compiler has no way
of knowing that the statement is complete.
If you see any compiler errors, then your program did not successfully compile, and the compiler
did not create a .class file. Carefully verify the program, fix any errors that you detect, and try
again.
Semantic Errors
In addition to verifying that your program is syntactically correct, the compiler checks for other
basic correctness. For example, the compiler warns you each time you use a variable that has not
been initialized:
Again, your program did not successfully compile, and the compiler did not create a .class file.
Fix the error and try again.
Runtime Problems
If you receive this error, java cannot find your bytecode file, HelloWorldApp.class.
One of the places java tries to find your .class file is your current directory. So if your .class
file is in C:\java, you should change your current directory to that. To change your directory, type
the following command at the prompt and press Enter:
cd c:\java
The prompt should change to C:\java>. If you enter dir at the prompt, you should see your .java
and .class files. Now enter java HelloWorldApp again.
If you still have problems, you might have to change your CLASSPATH variable. To see if this is
necessary, try clobbering the classpath with the following command.
set CLASSPATH=
Now enter java HelloWorldApp again. If the program works now, you'll have to change your
CLASSPATH variable. To set this variable, consult the Updating the PATH variable section in the
JDK 8 installation instructions. The CLASSPATH variable is set in the same manner.
A common mistake made by beginner programmers is to try and run the java launcher on the
.class file that was created by the compiler. For example, you'll get this error if you try to run
your program with java HelloWorldApp.class instead of java HelloWorldApp. Remember,
the argument is the name of the class that you want to use, not the filename.
The Java VM requires that the class you execute with it have a main method at which to begin
execution of your application. A Closer Look at the "Hello World!" Application discusses the main
method in detail.
If you receive this error, java cannot find your bytecode file, HelloWorldApp.class.
One of the places java tries to find your bytecode file is your current directory. So, for example, if
your bytecode file is in /home/jdoe/java, you should change your current directory to that. To
change your directory, type the following command at the prompt and press Return:
cd /home/jdoe/java
If you enter pwd at the prompt, you should see /home/jdoe/java. If you enter ls at the prompt,
you should see your .java and .class files. Now enter java HelloWorldApp again.
If you still have problems, you might have to change your CLASSPATH environment variable. To
see if this is necessary, try clobbering the classpath with the following command.
unset CLASSPATH
Now enter java HelloWorldApp again. If the program works now, you'll have to change your
CLASSPATH variable in the same manner as the PATH variable above.
A common mistake made by beginner programmers is to try and run the java launcher on the
.class file that was created by the compiler. For example, you'll get this error if you try to run
your program with java HelloWorldApp.class instead of java HelloWorldApp. Remember,
the argument is the name of the class that you want to use, not the filename.
The Java VM requires that the class you execute with it have a main method at which to begin
execution of your application. A Closer Look at the "Hello World!" Application discusses the main
method in detail.
If you are running an application through a browser and get security warnings that say the
application is blocked, check the following items:
Verify that the attributes in the JAR file manifest are set correctly for the environment in
which the application is running. The Permissions attribute is required. In a NetBeans
project, you can open the manifest file from the Files tab of the NetBeans IDE by
expanding the project folder and double-clicking manifest.mf.
Verify that the application is signed by a valid certificate and that the certificate is located
in the Signer CA keystore.
If you are running a local applet, set up a web server to use for testing. You can also add
your application to the exception site list, which is managed in the Security tab of the Java
Control Panel.
Errors V/s Exceptions In Java
Error : An Error “indicates serious problems that a reasonable application should not try to
catch.”
Both Errors and Exceptions are the subclasses of java.lang.Throwable class. Errors are the
conditions which cannot get recovered by any handling techniques. It surely cause
termination of the program abnormally. Errors belong to unchecked type and mostly occur
at runtime. Some of the examples of errors are Out of memory error or a System crash
error.
class StackOverflow {
public static void test(int i)
{
// No correct as base condition leads to
// non-stop recursion.
if (i == 0)
return;
else {
test(i++);
}
}
}
public class ErrorEg {
// eg of StackOverflowError
StackOverflow.test(5);
}
}
Output:
Exception in thread "main" java.lang.StackOverflowError
at StackOverflow.test(ErrorEg.java:7)
at StackOverflow.test(ErrorEg.java:7)
at StackOverflow.test(ErrorEg.java:7)
at StackOverflow.test(ErrorEg.java:7)
at StackOverflow.test(ErrorEg.java:7)
...
java.lang.ArithmeticException: / by zero
at ExceptionEg.main(ExceptionEg.java:8)
Summary of Differences
Errors Exceptions
We can recover from exceptions by either using
Recovering from Error is not possible. try-catch block or throwing exceptions back to
caller.
Exceptions include both checked as well as
All errors in java are unchecked type.
unchecked type.
Errors are mostly caused by the
Program itself is responsible for causing
environment in which program is
exceptions.
running.
All exceptions occurs at runtime but checked
Errors occur at runtime and not known
exceptions are known to compiler while
to the compiler.
unchecked are not.
They are defined in java.lang.Error
They are defined in java.lang.Exception package
package.
Examples :
Checked Exceptions : SQLException,
Examples :
IOException
java.lang.StackOverflowError,
Unchecked Exceptions :
java.lang.OutOfMemoryError
ArrayIndexOutOfBoundException,
NullPointerException, ArithmeticException.
Built-in Exceptions in Java with examples
Types of Exceptions in Java
Built-in exceptions are the exceptions which are available in Java libraries. These exceptions are
suitable to explain certain error situations. Below is the list of important built-in exceptions in
Java.
Examples of Built-in Exception:
1. Arithmetic exception : It is thrown when an exceptional condition has occurred in an
arithmetic operation.
// Java program to demonstrate
// ArithmeticException
class ArithmeticException_Demo {
public static void main(String args[])
{
try {
int a = 30, b = 0;
int c = a / b; // cannot divide by zero
System.out.println("Result = " + c);
}
catch (ArithmeticException e) {
System.out.println("Can't divide a number by 0");
}
}
}
Output:
Can't divide a number by 0
2. ArrayIndexOutOfBounds Exception : It is thrown to indicate that an array has been
accessed with an illegal index. The index is either negative or greater than or equal to the
size of the array.
// Java program to demonstrate
// ArrayIndexOutOfBoundException
class ArrayIndexOutOfBound_Demo {
public static void main(String args[])
{
try {
int a[] = new int[5];
a[6] = 9; // accessing 7th element in an array of
// size 5
}
catch (ArrayIndexOutOfBoundsException e) {
System.out.println("Array Index is Out Of Bounds");
}
}
}
Output:
Array Index is Out Of Bounds
3. ClassNotFoundException : This Exception is raised when we try to access a class whose
definition is not found.
// Java program to illustrate the
// concept of ClassNotFoundException
class Bishal {
} class Geeks {
} class MyClass {
public static void main(String[] args)
{
Object o = class.forName(args[0]).newInstance();
System.out.println("Class created for" + o.getClass().getName());
}
}
Output:
ClassNotFoundException
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
class File_notFound_Demo {
System.out.println(num);
}
catch (NumberFormatException e) {
System.out.println("Number format
exception");
}
}
}
Output:
Number format exception
10. StringIndexOutOfBoundsException : It is thrown by String class methods to indicate
that an index is either negative than the size of the string.
// Java program to demonstrate
// StringIndexOutOfBoundsException
class StringIndexOutOfBound_Demo {
public static void main(String args[])
{
try {
String a = "This is like chipping "; // length is 22
char c = a.charAt(24); // accessing 25th element
System.out.println(c);
}
catch (StringIndexOutOfBoundsException e) {
System.out.println("StringIndexOutOfBoundsException");
}
}
}
Output:
StringIndexOutOfBoundsException
Some other important Exceptions
1. ClassCastException
// Java Program to illustrate
// ClassCastException
class Test {
public static void main(String[] args)
{
String s = new String("Geeks");
Object o = (Object)s;
Object o1 = new Object();
String s1 = (String)o1;
}
}
Output:
Exception in thread "main" java.lang.ClassCastException:
java.lang.Object cannot be cast to java.lang.String
2. StackOverflowError
// Java Program to illustrate
// StackOverflowError
class Test {
public static void main(String[] args)
{
m1();
}
public static void m1()
{
m2();
}
public static void m2()
{
m1();
}
}
Output:
Exception in thread "main" java.lang.StackOverflowError
3. NoClassDefFoundError
// Java Program to illustrate
// NoClassDefFoundError
class Test //
{
public static void main(String[] args)
{
System.out.println("HELLO
GEEKS");
}
}
Output:
Note: If the corresponding Test.class file is not found
during compilation then we will get Run-time Exception
saying Exception in thread "main" java.lang.NoClassDefFoundError
4. ExceptionInInitializerError
Code 1:
// Java Program to illustrate
// ExceptionInInitializerError
class Test {
static int x = 10 / 0;
public static void main(String[] args)
{
}
}
Output:
Exception in thread "main" java.lang.ExceptionInInitializerError
Caused by: java.lang.ArithmeticException: / by zero
Code 2 :
// Java Program to illustrate
// ExceptionInInitializerError
class Test {
static
{
String s = null;
System.out.println(s.length());
}
public static void main(String[] args)
{
}
}
Output:
Exception in thread "main" java.lang.ExceptionInInitializerError
Caused by: java.lang.NullPointerException
Explanation : The above exception occurs whenever while executing static variable assignment
and static block if any Exception occurs.
5. IllegalArgumentException
// Java Program to illustrate
// IllegalArgumentException
class Test {
public static void main(String[] args)
{
Thread t = new Thread();
Thread t1 = new Thread();
t.setPriority(7); // Correct
t1.setPriority(17); // Exception
}
}
Output:
Exception in thread "main" java.lang.IllegalArgumentException
Explanation:The Exception occurs explicitly either by the programmer or by API developer to
indicate that a method has been invoked with Illegal Argument.
6. IllegalArgumentException
// Java Program to illustrate
// IllegalStateException
class Test {
public static void main(String[] args)
{
Thread t = new Thread();
t.start();
t.start();
}
}
Output:
Exception in thread "main" java.lang.IllegalThreadStateException
Explanation : The above exception rises explicitly either by programmer or by API developer to
indicate that a method has been invoked at wrong time.
7. AssertionError
// Java Program to illustrate
// AssertionError
class Test {
public static void main(String[] args)
{
// If x is not greater than or equal to 10
// then we will get the run-time exception
assert(x >= 10);
}
}
Output:
Exception in thread "main" java.lang.AssertionError
Explanation : The above exception rises explicitly by the programmer or by API developer to
indicate that assert statement fails.