Categories: MSDN / DotNet / Java / Scripts / Linux / PHP Ask - La ask - La Answer

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!!
[687 byte] By [nam508] at [2007-11-11 6:54:53]
# 1 Re: Help me! Cannot resolve symbol class SystemInput
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.
Norm at 2007-11-11 22:39:56 >