这段代码为什么不能编译?
import java.io.*;pubilc class ReadFile //throws Exception
{
public static void main(String [] args) throws Exception
{
BufferedReader br=new BufferedReader(new FileReader("person.txt"));
String s;
while(br.ready())
{
s=br.readLine();
System.out.println("所输入的字符串是:"+s);
}
}
}
其中person.txt是同文件夹下的一个文件
----------------解决方案--------------------------------------------------------
// 你犯了个很小的打字错误,看注解
import java.io.*;
public class ReadFile // it should be public not puilc it is just a type error
{
public static void main(String [] args) throws Exception
{
BufferedReader br=new BufferedReader(new FileReader("person.txt"));
String s;
while(br.ready())
{
s=br.readLine();
System.out.println("所输入的字符串是:"+s);
}
}
}
----------------解决方案--------------------------------------------------------
以后不要用记事本编代码了,用eclipse吧!其他的工具也行啊!最起码能识别小错误啊!
----------------解决方案--------------------------------------------------------
用什么工具最好啊?
----------------解决方案--------------------------------------------------------
用JCreator吧,那不错!最新3.5的!
----------------解决方案--------------------------------------------------------