我只需要使用InputStream.
我abc.tx通过使用File如下获取文件名作为t ,
File file = new File("F:\\source\\abc.txt");
file.getAbsoluteFile().getName() // getting - abc.txt
同样,我想abc.txt使用InputStream.
InputStream inputfile= new FileInputStream("F:\\source\\abc.txt");
Field field = inputfile.getClass().getDeclaredField("path");
field.setAccessible(true);
String filePath = (String)field.get(inputfile);
File fileName = new File(filePath);
你能帮我吗,如何只获取文件名?
慕妹3146593
相关分类