我有一个 xml 文件,我想获取文件的直接路径并将其转换为 String 有什么办法吗?我试图编译下面的代码,但它发现了错误的文件。
File temp = File.createTempFile("staff",".xml" );
String absolutePath = temp.getAbsolutePath();
String filePath = absolutePath.
substring(0,absolutePath.lastIndexOf(File.separator));
谢谢。