xml ファイルがあり、ファイルの直接パスを取得して文字列に変換したいのですが、それを行う方法はありますか? 以下のコードをコンパイルしようとしましたが、間違ったファイルが見つかりました。
File temp = File.createTempFile("staff",".xml" );
String absolutePath = temp.getAbsolutePath();
String filePath = absolutePath.
substring(0,absolutePath.lastIndexOf(File.separator));
ありがとう。