java之通过FileChannel实现文件复制

1、FileChanel介绍

Java NIO FileChannel是连接文件的通道,从文件中读取数据和将数据写入文件。Java NIO FileChannel类是NIO用于替代使用标准Java IO API读取文件的方法。

FileInputStream的getChannel方法获取的文件通道是只读的,当然通过FileOutputStream的getChannel的方法获取的文件通道是可写的

部分API

1)、truncate截断文件功能

   /*** Truncates the file underlying this channel to a given size. Any bytes* beyond the given size are removed from the file. If there are no bytes* beyond the given size then the file contents are unmodified.* <p>* If the file position is currently greater than the given size, then it is* set to the new size.** @param size*            the maximum size of the underlying file.* @throws IllegalArgumentException*             if the requested size is negative.* @throws ClosedChannelException*             if this channel is closed.* @throws NonWritableChannelException*             if the channel cannot be written to.* @throws IOException*             if another I/O error occurs.* @return this channel.*/public abstract FileChannel truncate(long size) throws IOException;

2)、force()强制在内存中的数据刷新到硬盘中去

    /*** Requests that all updates to this channel are committed to the storage* device.* <p>* When this method returns, all modifications made to the platform file* underlying this channel have been committed if the file resides on a* local storage device. If the file is not hosted locally, for example on a* networked file system, then applications cannot be certain that the* modifications have been committed.* <p>* There are no assurances given that changes made to the file using methods* defined elsewhere will be committed. For example, changes made via a* mapped byte buffer may not be committed.* <p>* The <code>metadata</code> parameter indicates whether the update should* include the file's metadata such as last modification time, last access* time, etc. Note that passing <code>true</code> may invoke an underlying* write to the operating system (if the platform is maintaining metadata* such as last access time), even if the channel is opened read-only.** @param metadata*            {@code true} if the file metadata should be flushed in*            addition to the file content, {@code false} otherwise.* @throws ClosedChannelException*             if this channel is already closed.* @throws IOException*             if another I/O error occurs.*/public abstract void force(boolean metadata) throws IOException;

3)、transferFrom可以看出是拷贝从源的position位置的count 字节大小

    /*** Reads up to {@code count} bytes from {@code src} and stores them in this* channel's file starting at {@code position}. No bytes are transferred if* {@code position} is larger than the size of this channel's file. Less* than {@code count} bytes are transferred if there are less bytes* remaining in the source channel or if the source channel is non-blocking* and has less than {@code count} bytes immediately available in its output* buffer.* <p>* Note that this channel's position is not modified.** @param src*            the source channel to read bytes from.* @param position*            the non-negative start position.* @param count*            the non-negative number of bytes to transfer.* @return the number of bytes that are transferred.* @throws IllegalArgumentException*             if the parameters are invalid.* @throws NonReadableChannelException*             if the source channel is not readable.* @throws NonWritableChannelException*             if this channel is not writable.* @throws ClosedChannelException*             if either channel has already been closed.* @throws AsynchronousCloseException*             if either channel is closed by other threads during this*             operation.* @throws ClosedByInterruptException*             if the thread is interrupted during this operation.* @throws IOException*             if any I/O error occurs.*/public abstract long transferFrom(ReadableByteChannel src, long position,long count) throws IOException;

 

 

 

 

2、复制文件常用方法

1、通过普通输入输出流复制文件

    public void copyFile(File srcFile, File dstFile) throws FileNotFoundException {InputStream inputStream = null;OutputStream outputStream = null;try {inputStream = new BufferedInputStream(new FileInputStream(srcFile));outputStream = new BufferedOutputStream(new FileOutputStream(dstFile));byte[] bytes = new byte[1024];int i;//读取到输入流数据,然后写入到输出流中去,实现复制while ((i = inputStream.read(bytes)) != -1) {outputStream.write(bytes, 0, i);}} catch (Exception e) {e.printStackTrace();} finally {try {if (inputStream != null)inputStream.close();if (outputStream != null)outputStream.close();} catch (IOException e) {e.printStackTrace();}}}

 

2、通过 FileChannel复制文件

 

	public void copyFile(File srcFile, File dstFile) throws IOException {if (srcFile == null || !srcFile.exists()) {return;}if (dstFile == null || !dstFile.exists()) {return;}FileInputStream fileIns = null;FileOutputStream fileOuts = null;FileChannel source = null;FileChannel destination = null;try {fileIns = new FileInputStream(srcFile);fileOuts = new FileOutputStream(dstFile);source = fileIns.getChannel();destination = fileOuts.getChannel();destination.transferFrom(source, 0, source.size());} catch (Exception e) {e.printStackTrace();} finally {if (fileIns != null)fileIns.close();if (fileOuts != null)fileOuts.close();if (source != null)source.close();if (destination != null)destination.close();}}

 

 

 

3、总结

一般复制使用输入输出流进行操作,用源文件创建出一个输入流,用目标文件创建出一个输出流,把输入流的数据读取写入到输出流,用fileChannel,直接连接输入输出流的文件通道,将数据直接写入到目标文件中,效率很高,尤其是复制文件比较大的时候,我们一般采用fileChannel复制文件。

 

 

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/289760.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Python版的Hello World

print “Hello World” 或者print("Hello World")

如何获取当前C#程序所有线程的调用栈信息 ?

咨询区 Daniel Sperry请问如何获取 .NET 程序当前所有线程的调用栈信息&#xff1f;我知道在 java 中只需调用 java.lang.Thread.getAllStackTraces() 方法即可。回答区 Will Calderwood在 .NET 中并不容易实现&#xff0c;但可以使用诊断库 ClrMD &#xff0c;可以在 nuget 上…

JS

为什么80%的码农都做不了架构师&#xff1f;>>> function getQueryString(name) {var reg new RegExp("(^|&)" name "([^&]*)(&|$)"),r window.location.search.substr(1).match(reg);if(r ! null) {return unescape(r[2]); }r…

织梦php远程连接数据库,用PHP连接Oracle for NT 远程数据库

用PHP连接Oracle for NT 远程数据库发布时间&#xff1a;2016-06-17 来源&#xff1a; 点击:次我以前用php连接远程oracle8.0.5 for NT 企业版,用ODBC,oracle接口均不行。急煞我也&#xff01;寻寻觅觅&#xff0c;终于找到了连接的正确方法&#xff0c;我这里用OCI接口&#x…

ssh公钥免密码登录

2019独角兽企业重金招聘Python工程师标准>>> ssh 无密码登录要使用公钥与私钥。linux下可以用用ssh-keygen生成公钥/私钥对&#xff0c;下面我以CentOS为例。 有机器A(192.168.1.155)&#xff0c;B(192.168.1.181)。现想A通过ssh免密码登录到B。 首先以root账户登陆…

java之Synchronized(锁住对象和锁住代码)

1、问题 Synchronized我们一般都知道是锁&#xff0c;但是我们怎么区分是锁对象还是锁代码呢&#xff1f; 2、测试Demo package leetcode.chenyu.test;public class Synchronized {class Test {public synchronized void testFirst() {print("testFirst");}public…

Spring4Shell的漏洞原理分析

Spring框架最新的PoC这两天出来的一个RCE漏洞&#xff0c;但是有以下的条件限制才行&#xff1a;必须是jdk9及以上必须是部署在tomcat的应用是springmvc的或者webflux的应用具体的可以查看spring官方&#xff1a;https://spring.io/blog/2022/03/31/spring-framework-rce-early…

ArcGIS Python

1.遍历指定文件夹下的Grid格式的Raster import arcpy arcpy.env.workspace "D:\GLC_2000\China_gridv3\Grid" rasters arcpy.ListRasters("*", "GRID") for raster in rasters:print(raster) 结果&#xff1a; china_v3 china_v3_pro 2.遍…

php 点对点,浅析点对点(End-to-End)的场景文字识别

一、背景随着智能手机的广泛普及和移动互联网的迅速发展&#xff0c;通过手机等移动终端的摄像头获取、检索和分享资讯已经逐步成为一种生活方式。基于摄像头的(Camera-based)的应用更加强调对拍摄场景的理解。通常&#xff0c;在文字和其他物体并存的场景&#xff0c;用户往往…

spring boot aop 记录方法执行时间

了性能调优&#xff0c;需要先统计出来每个方法的执行时间&#xff0c;直接在方法前后log输出太麻烦&#xff0c;可以用AOP来加入时间统计 添加依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-ao…

linux工具:ssh---未完

ssh server_ip 或者 ssh usernameserver_ip 或者 ssh usernameserver_name , 再按提示输入密码. _____________________________ Can login to remote boxBut I already have telnetCan login to remote box without passwordBut I don’t care input passowrd everytimeCan ex…

【ArcGIS遇上Python】Python实现Modis NDVI批量化月最大合成

「 刘一哥GIS」CSDN专业技术博文专栏目录索引https://geostorm.blog.csdn.net/article/details/113732454 最大合成法(MVC)可以在Envi中的Band Math中进行,式子是B1>B2,但是无法批量化;本文实现在ArcGIS中利用Python代码批量进行,如下: 用到的Modis NDVI数据是在MRT…

php 物理路径,网站物理路径查找思路

标签&#xff1a;网站物理路径查找思路一、思想核心找网站安装路径&#xff0c;即找Document Root 的位置&#xff0c;而Document Root最常见的地方就是 phpinfo.php 和httpd.conf中&#xff1b;路径查找方向&#xff0c;可以大致分为以下2个方向&#xff1a;(1) 找phpinfo(2) …

cad2016中选择全图字体怎么操作_打开CAD图纸字体丢失、重新选择怎么办?这样设置,一辈子用的到...

AutoCAD图纸本身就有着比较特殊的个性&#xff0c;难编辑难打开&#xff0c;时不时的还会来个乱码、字体缺失&#xff0c;甚至有的时候还提示我们进行字体的重新选择&#xff0c;应该怎么解决呢&#xff1f;虽然是个很经常遇见的问题&#xff0c;很多的小伙伴还是不知道如何解决…

Android studio之导入project出现SDK location not found. Define location with sdk.dir in the local.proper

1、问题 到入项目提示下面信息 SDK location not found. Define location with sdk.dir in the local.properties file or with an ANDROID_HOME environment variable. 2、分析 很明显没有找到sdk location&#xff0c;Define location with sdk.dir in the local.properti…

MassTransit - .NET Core 的分布式应用程序框架

简介MassTransit 是一个免费的、开源的.NET 分布式应用程序框架。MassTransit 使创建应用程序和服务变得容易&#xff0c;这些应用程序和服务利用基于消息的松散耦合异步通信来实现更高的可用性、可靠性和可扩展性特点•易于使用和理解的 API&#xff0c;让您专注于解决业务问题…

CoffeeScript 1.9发布,引入对生成器的支持

CoffeeScript 1.9最终引入了期待已久的生成器&#xff08;generator&#xff09;&#xff0c;这将会防止开发人员陷入回调函数的陷阱&#xff0c;并帮助他们编写异步代码。\简单说&#xff0c;生成器是这样一类函数&#xff0c;你可以中途从中退出&#xff0c;后面再进来&#…

新型互联网交换中心促进互联网产业发展,助力信息经济创新

互联网作为由众多网络互联构成的“网中网”&#xff0c;网络间联通是互联网运行的重要环节之一。互联网发展之初&#xff0c;我国网络主要由几大基础电信运营商承建&#xff08;包括中国电信、中国移动、中国联通、中国铁通等&#xff09;&#xff0c;互联网用户、ICP&#xff…

mongo学习笔记(二):聚合,游标

一、聚合 <1> Count 1.db.person.count() 2.db.person.count({"age":20}) <2> Distinct db.person.distinct("age")//指定了谁&#xff0c;谁就不能重复 <3> Group key&#xff1a;这个就是分组的key&#xff0c;我们这里是对年龄分组。…

【ArcGIS遇上Python】ArcGIS Python实现Modis NDVI批量求年最大值

一年中的12个月份的月最大合成&#xff08;mvc&#xff09;数据放在“F:\\Vegetation Change\\Data\\GIMMS Data\\1MVC\\"&#xff0c;数据名称格式为mvc_198801,mvc_198802........mvc_198812。处理年份为1981-2006&#xff0c;代码为&#xff1a; import arcpy arcpy.C…