import java.io.FileReader; import java.io.IOException;
public class test {
public static void main(String[] args) throws IOException { //此代码在我当前工程下抛 空指针异常,我转移到另外的工程后运行正常, 非常费解,文件在classpath路径下。 String filepath = test.class.getClassLoader().getResourc e("test.txt").getPath();
System.out.println(filepath); FileReader fr = new FileReader(filepath); char[] c = new char[1024]; int len; while((len = fr.read(c))!=-1) {
System.out.println(new String(c,0,len)); } fr.close(); } } |