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 small s instead of capital S in the class name System.
See the below code:
public class PackageSystemDoesNotExistError
{
public static void main(String args[])
{
system.out.println("package system does not exist error"); // here s is small
}
}
But in the following code:
public class PackageSystemDoesNotExistErrorSolved
{
public static void main(String args[])
{
System.out.println("package system does not exist error solved");//S is capital
}
}
Though System is not a package, as you have written system.out.println – three parts here (system, out and println) a package like statement, Java compiler considers it as package but as this package doesn’t exist, the error message is shown.
So the solution is just change the small s of system to capital S.
12 comments:
this answer is a great help!...how do I post questions here?
I am having trouble with putting a do..while inside a short while program to test it...and have been coming up with different answers... it is ok when it is in seperate programs...but getting 2 different answers when it tests inside the same program
You can write your code and the desired output here...I'll try to help
thanks for your offer!... i forgot check this today as I was working on it...finally found out it was i did not re-set the total and counter...
I will remember your offer and come back again if I have more problems... sometimes it takes hours as I am just learning!
thank you for sharing. i was unable to continue learning java only because of that capital S... thank you..
Thanks i was helpless
m compiling and executing the program but m not getting any errors and even i m not getting the output also.......just the command prompt escaping to taskbar and i m getting my notepad program again........please help me..
@sowjanya : Does it happen just for this program or all other programs? Can you post the code here?
thanks my friend!
Thanks a lot brother for your kind help over here for the new learners.
Dude, I could kiss you but you probably wouldn't want that. Thanks for your help!!!
Why can terminal not read "."?
jonas-jrgensens-macbook-pro:Java Jonas J.$ javac Begynd.java
Begynd.java:4: cannot find symbol
symbol : method printIn(java.lang.String)
location: class java.io.PrintStream
{System.out.printIn("DU ksla krybe før du kan gå");
^
1 error
@Stump: The method is println not printIn
Post a Comment