5种解决Java独占写文件的方法

本文实例讲解了5种解决Java独占写文件的方法,包含自己的一些理解,如若有不妥的地方欢迎大家提出。

方案1:利用RandomAccessFile的文件操作选项s,s即表示同步锁方式写

RandomAccessFile file = new RandomAccessFile(file, "rws");

方案2:利用FileChannel的文件锁

File file = new File("test.txt");
FileInputStream fis = new FileInputStream(file);
FileChannel channel = fis.getChannel();
FileLock fileLock = null;
while(true) {
  fileLock = channel.tryLock(0, Long.MAX_VALUE, false); // true表示是共享锁,false则是独享锁定
  if(fileLock!=null) break;
  else  // 有其他线程占据锁
   sleep(1000);
}

方案3:先将要写的内容写入一个临时文件,然后再将临时文件改名(Hack方案,利用了缓冲+原子操作的原理)

public class MyFile {
  private String fileName;
  public MyFile(String fileName) {
   this.fileName = fileName;
  }

  public synchronized void writeData(String data) throws IOException {
   String tmpFileName = UUID.randomUUID().toString()+".tmp";
   File tmpFile = new File(tmpFileName);
   FileWriter fw = new FileWriter(tmpFile);
   fw.write(data);
   fw.flush();
   fw.close();

   // now rename temp file to desired name, this operation is atomic operation under most os
   if(!tmpFile.renameTo(fileName) {
     // we may want to retry if move fails
     throw new IOException("Move failed");
   }
  }
}

方案4:根据文件路径封装文件,并且用synchronized控制写文件

public class MyFile {
  private String fileName;
  public MyFile(String fileName) {
   this.fileName = fileName;
  }
  public synchronized void writeData(String data) throws IOException {
   FileWriter fw = new FileWriter(fileName);
   fw.write(data);
   fw.flush();
   fw.close();
  }
}

方案5:我自己想出来的一个方案,不太精确。通过切换设置读写权限控制,模拟设置一个可写标记量(蜕变成操作系统中经典的读写问题....)

public class MyFile {
  private volatile boolean canWrite = true;
  private String fileName;
  public MyFile(String fileName) {
   this.fileName = fileName;
  }
  public void writeData(String data) {
   while(!canWrite) {
     try { Thread.sleep(100); } catch(InteruptedException ie) { } // 可以设置一个超时写时间
   }
   canWrite = false;

   // Now write file

   canWrite = true;
  }
}

以上就是Java独占写文件的解决方法,大家有没有学会,可以参考其他文章进行学习理解。

(0)

相关推荐

  • 5种解决Java独占写文件的方法

    本文实例讲解了5种解决Java独占写文件的方法,包含自己的一些理解,如若有不妥的地方欢迎大家提出. 方案1:利用RandomAccessFile的文件操作选项s,s即表示同步锁方式写 RandomAccessFile file = new RandomAccessFile(file, "rws"); 方案2:利用FileChannel的文件锁 File file = new File("test.txt"); FileInputStream fis = new Fi

  • Java BufferWriter写文件写不进去或缺失数据的解决

    Java BufferWriter写文件之后文件是空的或者数据不全 在编程的过程中,读写文件是非常常见的操作,在这里我问介绍一下最近我遇到的集中写文件写不进去的情况.首先给出完整的代码. import java.io.BufferedWriter; import java.io.FileWriter; import java.io.IOException; public class Main { public static void main(String[] args) throws IOEx

  • 完美解决java读取大文件内存溢出的问题

    1. 传统方式:在内存中读取文件内容 读取文件行的标准方式是在内存中读取,Guava 和Apache Commons IO都提供了如下所示快速读取文件行的方法: Files.readLines(new File(path), Charsets.UTF_8); FileUtils.readLines(new File(path)); 实际上是使用BufferedReader或者其子类LineNumberReader来读取的. 传统方式的问题: 是文件的所有行都被存放在内存中,当文件足够大时很快就会

  • 解决Java中properties文件编码问题

    目录 1.properties文件显示乱码问题 2.读取properties文件乱码 3.Spring boot的@ConfigurationProperties读取properties文件乱码 总结 1.properties文件显示乱码问题 原因是因为properties默认使用ASCII码,就算在文件中填写了中文,再打开后依然会转换成ASCII码的形式.首先确定properties配置文件的编码格式,通常情况下properties的默认编码格式为ISO-8859-1.更改properties

  • java解析Excel文件的方法实例详解

    目录 介绍 1.1 pom依赖 1.2 将数据流转化为可解析的Workbook类型文件 1.3 解析 1.4 Controller层接收前端传递的Excel文件(前端使用Element-ui的<el-upload>组件) 1.5 ServiceIMPL层解析Excel文件并将解析结果返回 1.6 前端VUE实现Excel文件的上传(使用Element-ui的<el-upload>组件) 总结 在做一个项目时,有很多原本保存在Excel文件中的基础数据,如此则需要一个Excel文件解

  • java读取properties文件的方法实例分析

    本文实例讲述了java读取properties文件的方法.分享给大家供大家参考.具体分析如下: 1.不在项目中读取: Properties properties = new Properties(); BufferedReader read = new BufferedReader(new InputStreamReader(new FileInputStream("文件的路径"),"utf-8")); properties.load(read); properti

  • java读取properties文件的方法

    本文实例讲述了java读取properties文件的方法.分享给大家供大家参考.具体实现方法如下: package com.test.demo; import java.util.Properties; import java.io.InputStream; import java.io.IOException; /** * 读取Properties文件的例子 * File: TestProperties.java */ public final class TestProperties { p

  • Java导出txt文件的方法

    本文实例讲述了Java导出txt文件的方法.分享给大家供大家参考.具体如下: 例子一 /** * export导出文件 */ @RequestMapping(value="/grab/export/csv",method={RequestMethod.GET}) public void exportCsv(HttpServletRequest request,HttpServletResponse response){ String userId = ServletRequestUti

  • 解决Java J2EE乱码问题的方法

    乱码是j2ee中一个比较常见的问题.遇到一两个问题的情况下,可以用new String(request.getParameter(xxx).getBytes("ISO-8859-1"),"UTF-8")来解决.遇到多的情况下,就最好用过滤器. 过滤器只需要注意2个地方即可--类和web.xml 1.在web.xml上面的发布如下: <fileter> <!-- 类名 --> <filter-name>SetCharsetEncod

  • Java读取txt文件的方法

    java读取txt文件内容.可以作如下理解: 首先获得一个文件句柄.File file = new File(); file即为文件句柄.两人之间连通电话网络了.接下来可以开始打电话了. 通过这条线路读取甲方的信息:new FileInputStream(file) 目前这个信息已经读进来内存当中了.接下来需要解读成乙方可以理解的东西 既然你使用了FileInputStream().那么对应的需要使用InputStreamReader()这个方法进行解读刚才装进来内存当中的数据 解读完成后要输出

随机推荐