public class book {
public static int st = 0;
private static String a=st+".st";
private static String b;
public static String raed(){
try{
FileReader s=new FileReader("story\\"+a);
char[] c=new char[1];
while(s.read(c)!=-1)
b.concat(new String(c));
s.close();
return new String(c);
}
catch(Exception e){
String a="程序异常";return a;
}
}
public static void main(String[] args) {
System.out.print(book.raed());
}
}
public static int st = 0;
private static String a=st+".st";
private static String b;
public static String raed(){
try{
FileReader s=new FileReader("story\\"+a);
char[] c=new char[1];
while(s.read(c)!=-1)
b.concat(new String(c));
s.close();
return new String(c);
}
catch(Exception e){
String a="程序异常";return a;
}
}
public static void main(String[] args) {
System.out.print(book.raed());
}
}