读取文件的问题
import java.io.*;
class e14
{
public static void main(String[] args) throws Exception
{
File f=new File("therelines.txt");
BufferedReader br=
new BufferedReader(
new InputStreamReader(
new FileIntputStream("therelines.txt")));
String line;
line=br.readLine();
System.out.println(line);
}
}
我的therelines.txt文件要放在哪儿?
总是提示找不到符号