i have an error while trying to insert 09 in my ArrayList's add method how to resolve it when i google for it its give me solution like its a octal no and i need to chage this to decimal no how do i do this please any one help me ...
import java.util.*;
class MyArrayList{
public static void main(String args[]){
ArrayList al=new ArrayList();
al.add(new Integer(09));
System.out.println(al);
}
}
output:MyArrayList.java:5:error integer too large:09