-
Help me!! Cannot resolve symbol class SystemInput
I can't run this programming
import java.awt.*;
import java.io.*;
import java.lang.*;
import text.*;
public class test{
public void Run(){
SystemInput sysIn= new SystemInput();
String theName= sysIn.readString("Enter your name:") ;
System.out.println("\nYou just saying Hello"+ theName);
}
public static void main(String args[ ]){
test theApp= new test();
theApp.Run();
}
}
When compile this programming by JCreator. The Compile has messages error
Package text does not exist
Cannot resolve symbol class SystemInput
Cannot resolve symbol class SysstemInput
I cannot run thhis programmin. Help me!!
-
You need to find the definition for the class SystemInput and for the class SysstemInput.
And for the package text.
Where did you find references to these classes and package? If they are in a jar file, you need have the compiler find it by putting it on the classpath for javac.
Similar Threads
-
By none_none in forum Java
Replies: 17
Last Post: 04-28-2005, 03:00 PM
-
Replies: 5
Last Post: 10-17-2002, 01:58 PM
-
Replies: 0
Last Post: 09-08-2001, 11:16 AM
-
Replies: 2
Last Post: 05-17-2001, 11:15 AM
-
By John Butorac in forum Java
Replies: 2
Last Post: 12-16-2000, 12:27 PM
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks