當我將新的UserDefinedFileAttributeView
屬性添加到文件時,Java存儲此信息的位置在哪裏? 目錄中沒有其他文件,當我查看文件屬性時,該文件沒有任何新的屬性或詳細信息。Java UserDefinedFileAttributeView
我的代碼:
String versionAttrName = "report.version";
try {
Path path = FileSystems.getDefault().getPath(filePath, "");
UserDefinedFileAttributeView view = Files.getFileAttributeView(path, UserDefinedFileAttributeView.class);
view.write(versionAttrName, Charset.defaultCharset().encode(newVersion));
} catch (IOException e) {
System.out.println("7 - Error saving version to file! - "+ filePath + " - " + e.getMessage());
}
你檢查你的用戶目錄和'programdata'目錄......我建議做一個硬盤搜索,會找到文件的最快方法: ) – 2013-04-23 14:46:54
想要搜索什麼?哈哈,我不知道Java會使用什麼文件名/類型 – gwin003 2013-04-23 14:52:19