Saturday, September 20, 2014

Published 9/20/2014 by with 0 comment

Illegal modifier for parameter ... only final is permitted

A local variable, i.e., method level variable or a parameter cannot be declared as static or public/private/protected. So local variables must be declared without these modifiers. For example, the following code is wrong:     void methodA(static int param) {         System.out.println(param);     }     void methodB(private int param) {  ...
Read More
    email this       edit

Wednesday, June 11, 2014

Published 6/11/2014 by with 1 comment

This method requires a body instead of a semicolon

The reason for the error "This method requires a body instead of a semicolon" is same as described in the post missing method body, or declare abstrac...
Read More
    email this       edit
Published 6/11/2014 by with 6 comments

Font ' net/sf/jasperreports/fonts/pictonic/pictonic.ttf ...' is not available to the JVM

The full error message is: Exception in thread "AWT-EventQueue-0" java.lang.ExceptionInInitializerError        at net.sf.jasperreports.engine.fill.JRBaseFiller.(JRBaseFiller.java:184) … Caused by: net.sf.jasperreports.engine.util.JRFontNotFoundException: Font '                     ...
Read More
    email this       edit

Thursday, December 12, 2013

Published 12/12/2013 by with 0 comment

The constructor ... is not visible

When you invoke the private constructor of a class in another class, you’ll get the error message “The constructor ... is not visible”. And when the private constructor of a super class is invoked from the subclass implicitly or explicitly, you’ll get the following: Implicit super constructor ... is not visible for default constructor. Must define an explicit constructor. Implicit super constructor...
Read More
    email this       edit

Tuesday, November 26, 2013

Published 11/26/2013 by with 0 comment

java.lang.UnsupportedOperationException at java.util.AbstractList.remove

When you create a java.util.List object from an array using Arrays.asList method and after that if you try to clear or remove the elements from the list you'll get this run time error. The reason is that Arrays.asList method returns a fixed-size list backed by the specified array. See in the example code below: int[] myArray = {5,10,15,20}; List intList = Arrays.asList(myArray); ...
Read More
    email this       edit
Published 11/26/2013 by with 5 comments

Resource leak: 'scanner' is never closed

If you do not close the java.util.Scanner object after reading data, you can get an warning saying "Resource leak: 'scanner' is never closed". In the code below see that the Scanner object is closed in a finally block after reading all inputs using the Scanner object. int number1, number2; Scanner scanner = new Scanner(System.in); try { System.out.println("Ener the first number"); ...
Read More
    email this       edit
Published 11/26/2013 by with 0 comment

Dimensions expected after this token / '[' expected

Java error "Dimensions expected after this token" or " '[' expected " can occur while creating array elements or allocating memory using the keyword new. If the square brackets [] are not used properly, you can get this error message. See the code below: int myArray[]=new int{10,20,30,40}; Here this is a syntax error. You have to put square brackets [] after new int. To initialize an array...
Read More
    email this       edit
Published 11/26/2013 by with 0 comment

Cannot invoke length() on the array type

The error message "Cannot invoke length() on the array type" or "cannot find symbol ... method length()" is related with the use of array. Java array has a built in property length which is a variable, not method. If you put parenthesis () after the array property length, you'll get this error. See the example below: int[] number = {5,10,15}; for(int i=0; i<number.length(); i++) {    ...
Read More
    email this       edit

Friday, May 20, 2011

Published 5/20/2011 by with 2 comments

attempting to use incompatible return type

We may encounter this error message when we override a superclass method in the subclass with a wrong return type in the subclass method. To understand this, let's see the following two classes. public class SuperClass { public double sum(double a,double b) { return (a+b); } } public class Subclass extends SuperClass { public long sum(double a,double b) { return Math.round(a+b); } } In...
Read More
    email this       edit

Thursday, May 19, 2011

Published 5/19/2011 by with 5 comments

is not abstract and does not override abstract method

See the code below: import javax.swing.JFrame; import javax.swing.JButton; import java.awt.Container; import java.awt.FlowLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; public class MyFrame extends JFrame implements ActionListener{ private JButton exitButton = new JButton("Exit"); public MyFrame() { Container container = getContentPane(); container.setLayout(new...
Read More
    email this       edit