Java如何设置文件为只读

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java如何设置文件为只读相关的知识,希望对你有一定的参考价值。

参考技术A package com.yiibai;

import java.io.File;
import java.io.IOException;

public class FileReadAttribute


public static void main(String[] args) throws IOException

File file = new File("c:/file.txt");

//mark this file as read only, since jdk 1.2
file.setReadOnly();

if(file.canWrite())
System.out.println("This file is writable");
else
System.out.println("This file is read only");


//revert the operation, mark this file as writable, since jdk 1.6
file.setWritable(true);

if(file.canWrite())
System.out.println("This file is writable");
else
System.out.println("This file is read only");


Java 设置Excel工作表为只读

Excel

Excel工作表中可通过文档加密的方式来设置文档保护,可设置文档打开密码、工作表限制编辑密码。当需要设置文档内容仅供查看而无法编辑时,可针对sheet表格来设置内容为只读。下面,通过Java程序代码展示如何设置Excel工作表为只读模式。

Java 程序环境如下:

代码编译工具:IntelliJ IDEA

Excel测试文档:.xlsx 2013

Excel类库工具:free spire.xls.jar 3.9.1

Jdk版本:1.8.0

Jar导入游戏结果如图:

程序代码

import com.spire.xls.*;

public class ReadOnly {

 public static void main(String[] args) {
     //加载Excel工作簿文档
     Workbook wb = new Workbook();
     wb.loadFromFile("sample.xlsx");

     //遍历工作表
     for(int i = 0; i<wb.getWorksheets().getCount();i++)
     {
         Worksheet sheet = wb.getWorksheets().get(i);//获取所有工作表
         sheet.protect("123456");//设置允许编辑的密码
         sheet.setProtectContents(true);//设置内容保护(只读)
     }

     //保存文档
     wb.saveToFile("ReadOnly.xlsx");
     wb.dispose();
 }

}
执行程序,生成文档,如图效果:

代码中的测试文件和结果文件路径为IDEA项目文件夹路径,www.sangpi.com的文件路径可另行自定义。

以上是关于Java如何设置文件为只读的主要内容,如果未能解决你的问题,请参考以下文章

Java 设置Excel工作表为只读

在 java.nio2 中将路径设置为只读的正确方法

设置输入中的Java脚本为只读的值

如何在 Msys 或 Cygwin 中将文件设置为只写或只读?

如何设置COOKIE的EXPIRES属性?

将sql server连接设置为只读?