Home Tutorial Java Core Files How to make a file read-only in java

 
 

How to make a file read-only in java
Posted on: February 16, 2005 at 12:00 AM
In this section, you will learn how to make a file read only.

How to make a file read-only in java

A read-only file is any file with the read-only attribute. Read-only files can be opened and accessed but you will not be able to make changes to it. They can be deleted and moved. You can make a file read-only by using file.setReadOnly() method of File class. After using this method, you will not be able to write or edit into the file. 

Here is the code:

import java.io.File;

public class FileReadOnly {
  public static void main(String[] args) {
    File file = new File("c:/file.txt");
    file.setReadOnly();
    System.out.println("File is in read only mode");
    }
}

The above program will make a the file read only

To make file read only file.setReadOnly(); method is used.

In the page you learned how to make a file read only.

Related Tags for How to make a file read-only in java:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.