5
我有需要一個額外的屬性,稱爲「加密使用」的文件。但是這給了「非法論證豁免」。我知道爲什麼會出現這樣的錯誤,「使用的加密」並不被稱爲屬性,但有沒有辦法強制它呢?或者添加自定義元數據到文件?添加自定義屬性或元數據到文件java
Path path = new File("/propertyfiles/encdec.properties").toPath();
try{
Files.setAttribute(path, "encryption used", "testtesttest");
}catch(IOException e){
System.out.println(e.getMessage());
}
try{
System.out.println(Files.getAttribute(path, "encryption used"));
}catch(IOException e){
System.out.println(e.getMessage());
}
這個屬性是否意味着文件'encdec.properties'被加密? –