热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Netty基础02NIO文件编程

3、文件编程FileChannel​获取FileChannle只能在阻塞模式下使用不能直接打开FileChannel,必须通过FileInputStream、FileOutput

3、文件编程


FileChannel

获取



  • FileChannle只能在阻塞模式下使用



  • 不能直接打开FileChannel,必须通过FileInputStream、FileOutputStream或者RandomAccessFile来获取FileChannel,它们都有getChannel方法



  • 通过FileInputStream获取的channel只能读



  • 通过FileOutputStream获取的channel只能写



  • 通过RandomAccessFile是否能读写根据构造的RandomAccessFile时的读写模式决定



读取



  • 会从channel读取数据跳虫ByteBuffer,返回值表示读到了多少个字节,-1表示到达了文件的末尾



  • int readBytes = channel.read(buffer);


写入



  • 写入的正确姿势如下



  • ByteBuffer buffer = ...;
    buffer.put(...); // 存入数据
    buffer,flip(); // 切换读模式
    while(buffer.hasRemaining()) {
    channel.write(buffer);
    }

    在while中调用channel.write方法并不一定保证一次将buffer中的全部内容写入channel



关闭



  • channel必须关闭,不过调用了FileInoutStream、FileOutputStream或者RandomAccessFile的close方法会间接调用channel的close方法

位置



  • 获取当前位置

    long pos = channel.position();


  • 设置当前位置

    long newPos = ....;
    channel.position(newPos);


  • 设置当前位置时,如果设置为未见末尾

    这时读取会返回-1

    这时写入,会追加内容,但要注意如果position超过了文件末尾,再写入新内容和原来末尾之间会有空洞(00)



大小



  • 使用size方法获取文件大小

强制写入



  • 操作系统处于性能的考虑,会将数据缓存,不是立刻写入磁盘,可以调用force(true)方法将文件内容和元数据(文件的权限等信息立刻写入磁盘)


两个channel传输数据

public static void main(String[] args) {
String source = "word1.txt";
String target = "word3.txt";
try (
FileChannel from = new FileInputStream(source).getChannel();
FileChannel to = new FileOutputStream(target).getChannel();
) {
// 代码简洁,效率高,底层一版会调用操作系统的零拷贝优化shangxin
// 传输数据有上限,最多2G
from.transferTo(0, from.size(), to);
} catch (IOException e) {
e.printStackTrace();
}
}

优化(可传输大于2G的文件):

public static void main(String[] args) {
String source = "word1.txt";
String target = "word4.txt";
try (
FileChannel from = new FileInputStream(source).getChannel();
FileChannel to = new FileOutputStream(target).getChannel();
) {
long size = from.size();
// left 表示还有多少字节
for (long left = size; left > 0; ) {
System.out.println("position:"+(size-left)+",left:"+left);
left -= from.transferTo((size - left), left, to);
}
} catch (IOException e) {
e.printStackTrace();
}
}

Path



  • JDK 引入Path和Paths类



  • Path用来表示文件路径



  • Paths时工具类,用来获取Path

    // 相对路径 使用usr.dir 环境变量来定位 word1.txt
    Path path = Paths.get("word1.txt");
    // 绝对路径
    Path path2 = Paths.get("E:\0107TEST\\AkeyStart\\AkeyStart.bat");
    // 绝对路径
    Path path1 = Paths.get("E:/210107TEST/AkeyStart/AkeyStart.bat");
    // 代表 E:/210107TEST/AkeyStart/AkeyStart.bat
    Path path3 = Paths.get("E:/210107TEST/AkeyStart", "AkeyStart.bat");


    • **. **代表当前路径



    • ..代表了上一级路径





```java
Path path4 = Paths.get("E:\0107TEST\\AkeyStart\\AkeyStart.bat\\..\\AkeyStart - 副本.bat");
System.out.println(path4);
System.out.println(path4.normalize());
E:0107TEST\AkeyStart\AkeyStart.bat\..\AkeyStart - 副本.bat
E:0107TEST\AkeyStart\AkeyStart - 副本.bat
```

File



  • 检查文件是否存在

    Path path = Paths.get("word10.txt");
    System.out.println(Files.exists(path)); // true false


  • 创建一级目录

    Path path1 = Paths.get("E:\\kms\\dgj");
    Files.createDirectory(path1);


  • 创建多级目录

    Path path1 = Paths.get("E:\\kms\\test\\dgj");
    Files.createDirectories(path1);


  • 拷贝文件

    // word10.txt没有
    Path path1 = Paths.get("word1.txt");
    Path path2 = Paths.get("word10.txt");
    Files.copy(path1,path2);
    // word2.txt有,覆盖
    Path path1 = Paths.get("word1.txt");
    Path path2 = Paths.get("word2.txt");
    Files.copy(path1,path2, StandardCopyOption.REPLACE_EXISTING);

    ​ 如果文件存在,抛 java.nio.file.FileAlreadyExistsException



  • 移动文件

    Path path1 = Paths.get("word1.txt");
    Path path2 = Paths.get("word2.txt");
    // StandardCopyOption.ATOMIC_MOVE 保证文件移动的原子性
    Files.move(path1,path2,StandardCopyOption.ATOMIC_MOVE);


  • 删除文件

    Path path1 = Paths.get("word2.txt");
    Files.delete(path1);

    ​ 文件不存在:java.nio.file.NoSuchFileException: word21.txt



  • 删除目录

    Path path1 = Paths.get("E:\\kms\\dgj");
    Files.delete(path1);


  • 遍历文件夹(访问者模式)

    public static void dirAndFile() {
    try {
    // 文件夹数
    AtomicInteger dircount = new AtomicInteger();
    // 文件数
    AtomicInteger filecount = new AtomicInteger();
    Files.walkFileTree(Paths.get("D:\\mavenjar"), new SimpleFileVisitor

    () {
    @Override
    public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) throws IOException {
    dircount.incrementAndGet();
    System.out.println("dir--->:"+dir);
    return FileVisitResult.CONTINUE;
    }
    @Override
    public FileVisitResult visitFile(Path file, BasicFileAttributes attrs)
    throws IOException
    {
    filecount.incrementAndGet();
    System.out.println("file--->:"+file);
    return FileVisitResult.CONTINUE;
    }
    });
    System.out.println("dircount:"+dircount+"个文件");
    System.out.println("dircount:"+filecount+"个文件夹");
    } catch (IOException e) {
    e.printStackTrace();
    }
    }

    遍历文件夹中有多少个jar

    public static void selectJar() {
    try {
    AtomicInteger atomicInteger = new AtomicInteger();
    Files.walkFileTree(Paths.get("D:\\mavenjar"), new SimpleFileVisitor

    () {
    @Override
    public FileVisitResult visitFile(Path file, BasicFileAttributes attrs)
    throws IOException {
    if(file.toString().endsWith(".jar")){
    atomicInteger.incrementAndGet();
    System.out.println(file);
    }
    return super.visitFile(file,attrs);
    }
    });
    System.out.println(atomicInteger);
    } catch (IOException e) {
    e.printStackTrace();
    }
    }


  • 删除多级目录

    Files.delete(Paths.get("D:\\ruoyi")); //java.nio.file.DirectoryNotEmptyException: D:\ruoyi 有文件 删除失败

    public static void deleteDir() {
    // 删除多级目录
    try {
    Files.walkFileTree(Paths.get("D:\\ruoyi"), new SimpleFileVisitor

    () {
    @Override
    public FileVisitResult visitFile(Path file, BasicFileAttributes attrs)
    throws IOException {
    Files.delete(file);
    return super.visitFile(file, attrs);
    }
    @Override
    public FileVisitResult postVisitDirectory(Path dir, IOException exc)
    throws IOException {
    Files.delete(dir);
    return FileVisitResult.CONTINUE;
    }
    });
    } catch (IOException e) {
    e.printStackTrace();
    }
    }


    • 文件夹拷贝

      public static void backups() throws IOException {
      String source = "D:\\代码备份";
      String target = "D:\\代码备份testnio";
      Files.walk(Paths.get(source)).forEach(path -> {
      // 是否是目录
      try {
      String replace = path.toString().replace(source, target);
      if (Files.isDirectory(path)) {
      Files.createDirectory(Paths.get(replace));
      }
      // 是否是文件
      else if (Files.isRegularFile(path)) {
      Files.copy(path, Paths.get(replace));
      }
      } catch (IOException E) {
      }
      });
      System.out.println("copy complete");
      }






推荐阅读
  • 1:有如下一段程序:packagea.b.c;publicclassTest{privatestaticinti0;publicintgetNext(){return ... [详细]
  • 深入理解Tornado模板系统
    本文详细介绍了Tornado框架中模板系统的使用方法。Tornado自带的轻量级、高效且灵活的模板语言位于tornado.template模块,支持嵌入Python代码片段,帮助开发者快速构建动态网页。 ... [详细]
  • 本文详细介绍了如何使用 Yii2 的 GridView 组件在列表页面实现数据的直接编辑功能。通过具体的代码示例和步骤,帮助开发者快速掌握这一实用技巧。 ... [详细]
  • 深入理解BIO与NIO的区别及其应用
    本文详细探讨了BIO(阻塞I/O)和NIO(非阻塞I/O)之间的主要差异,包括它们的工作原理、性能特点以及应用场景,旨在帮助开发者更好地理解和选择适合的I/O模型。 ... [详细]
  • 零拷贝技术是提高I/O性能的重要手段,常用于Java NIO、Netty、Kafka等框架中。本文将详细解析零拷贝技术的原理及其应用。 ... [详细]
  • 本文将介绍如何编写一些有趣的VBScript脚本,这些脚本可以在朋友之间进行无害的恶作剧。通过简单的代码示例,帮助您了解VBScript的基本语法和功能。 ... [详细]
  • 本文介绍了如何使用 Spring Boot DevTools 实现应用程序在开发过程中自动重启。这一特性显著提高了开发效率,特别是在集成开发环境(IDE)中工作时,能够提供快速的反馈循环。默认情况下,DevTools 会监控类路径上的文件变化,并根据需要触发应用重启。 ... [详细]
  • 使用 Azure Service Principal 和 Microsoft Graph API 获取 AAD 用户列表
    本文介绍了一段通用代码示例,该代码不仅能够操作 Azure Active Directory (AAD),还可以通过 Azure Service Principal 的授权访问和管理 Azure 订阅资源。Azure 的架构可以分为两个层级:AAD 和 Subscription。 ... [详细]
  • 本文深入探讨了 Java 中的 Serializable 接口,解释了其实现机制、用途及注意事项,帮助开发者更好地理解和使用序列化功能。 ... [详细]
  • Python自动化处理:从Word文档提取内容并生成带水印的PDF
    本文介绍如何利用Python实现从特定网站下载Word文档,去除水印并添加自定义水印,最终将文档转换为PDF格式。该方法适用于批量处理和自动化需求。 ... [详细]
  • XNA 3.0 游戏编程:从 XML 文件加载数据
    本文介绍如何在 XNA 3.0 游戏项目中从 XML 文件加载数据。我们将探讨如何将 XML 数据序列化为二进制文件,并通过内容管道加载到游戏中。此外,还会涉及自定义类型读取器和写入器的实现。 ... [详细]
  • 本文详细解析了Python中的os和sys模块,介绍了它们的功能、常用方法及其在实际编程中的应用。 ... [详细]
  • 扫描线三巨头 hdu1928hdu 1255  hdu 1542 [POJ 1151]
    学习链接:http:blog.csdn.netlwt36articledetails48908031学习扫描线主要学习的是一种扫描的思想,后期可以求解很 ... [详细]
  • 1整合dubbo1.1e3-manager-Service1.1.1pom.xml排除jar在e3-manager-Service工程中添加dubbo依赖的jar包。 ... [详细]
  • 本文总结了近年来在实际项目中使用消息中间件的经验和常见问题,旨在为Java初学者和中级开发者提供实用的参考。文章详细介绍了消息中间件在分布式系统中的作用,以及如何通过消息中间件实现高可用性和可扩展性。 ... [详细]
author-avatar
ccccccc_fly_887
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有