Showing posts with label Package. Show all posts
Showing posts with label Package. Show all posts

Wednesday, May 20, 2009

Published 5/20/2009 by with 39 comments

package system does not exist

Very simple error ‘package system does not exist’- most probably you have used ‘err’ or ‘in’ or ‘out’ field of the ‘System’ class of ‘java.lang’ package but you have given lower case "s" instead of upper case "S" in the class name System. Remember Java is case sensitive. See the below code: system.out.println("package system does not exist error"); // here s is in lower case But in the following...
Read More
    email this       edit