这段代码为什么不能编译?
import *;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是同文件夹下的一个文件