如图所示,我在Test。java中如何获取abc目录下的Read。txt这个文件路径
InputStream in=new FileInputStream(new File("abc/Read.txt"));这个写法不能打成jar包,打包后就不认识这个路径了。
// InputStream in=Test.class.getClassLoader().getResourceAsStream("com/bsm/test/1.txt");
// InputStream in=Test.class.getResourceAsStream("1.txt");
这两方法好像只能拿classpath下的资源
InputStream in=new FileInputStream(new File("abc/Read.txt"));这个写法不能打成jar包,打包后就不认识这个路径了。
// InputStream in=Test.class.getClassLoader().getResourceAsStream("com/bsm/test/1.txt");
// InputStream in=Test.class.getResourceAsStream("1.txt");
这两方法好像只能拿classpath下的资源