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