当前位置: 代码迷 >> Java相关 >> 这段代码为什么不能编译?
  详细解决方案

这段代码为什么不能编译?

热度:77   发布时间:2005-08-18 18:07:00.0
这段代码为什么不能编译?
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的!
----------------解决方案--------------------------------------------------------
  相关解决方案