本帖最后由 未知数|X| 于 2013-10-21 20:39 编辑
你那里有两个问题一个是局部变量的问题 s2一个是路径书写的错误,你的Date.java类应该是你当前项目下的类吧 路径不能那样写,还有你的异常写的也不具体 应该是FileNotFoundException 和IOException你试试改成下面的看看
package t;
import java.io.*;
public class IO{
public static void main(String [] arge) throws Exception{
String s = null;
String s2 =null;
try{
s=new String();
s2=new String();
BufferedReader in = new BufferedReader(new FileReader("D:\\Myeclipse工作区间\\项目名称\\src\\包名\\Date.java"));
while((s=in.readLine())!=null)
s2+=s+"\n";
in.close();
// System.out.println(s2);
}catch(FileNotFoundException e){}catch(IOException e){}
System.out.println("hehehehehhehe");
System.out.println(s2);
}
}\ |