檔案屬性設定
package com.file; import java.io.File; /** * Created by elijahliu on 2017/2/11. */ public class SetFileProperty { public static void main(String[] args){ File file = new File("test.file"); if (file.exists()){ file.setWritable(true);//可写 file.setReadable(true);//可读 file.setReadOnly();//只读 } } }
以上是java如何設定檔案屬性的詳細內容。更多資訊請關注PHP中文網其他相關文章!