请大家给我解决这个问题!!!!!
import *;import javax.swing.*;
public class yonghu1{
public static void main(String args[]) throws IOException{
try{ File file1=new File("11\\fxq.txt");
FileReader fr=new FileReader(file1);
BufferedReader br=new BufferedReader(fr);
String ss=br.readLine();
System.out.println(ss);
}
catch(FileNotFoundException e){
JOptionPane.showMessageDialog(null,"找不到件","出错",JOptionPane.INFORMATION_MESSAGE);
}
} }
[此贴子已经被作者于2005-6-14 22:06:55编辑过]