拷贝流,使用默认Buffer大小,拷贝后不关闭流
|
| cn.hutool.core.io.IoUtil.copy(java.io.InputStream, java.io.OutputStream, int) |
拷贝流,拷贝后不关闭流
|
| cn.hutool.core.io.IoUtil.copy(java.io.InputStream, java.io.OutputStream, int, cn.hutool.core.io.StreamProgress) |
拷贝流,拷贝后不关闭流
|
| cn.hutool.core.io.IoUtil.copy(java.io.FileInputStream, java.io.FileOutputStream) |
拷贝文件流,使用NIO
|
方法名称:cn.hutool.core.io.IoUtil.copy(java.io.Reader, java.io.Writer)
方法描述
将Reader中的内容复制到Writer中 使用默认缓存大小,拷贝后不关闭Reader
支持版本及以上
参数描述:
| 参数名 | 描述 |
| — | — |
| Reader reader |
reader Reader
|
| Writer writer |
writer Writer
|
返回值:
拷贝的字节数
参考案例:
//事先创建源文件,目标文件可以不用创建
File src = new File(“C:\Users\Administrator\Desktop\xuzhu/copyTest1.txt”) ;
File dest = new File(“C:\Users\Administrator\Desktop\xuzhu/toCopyTest1.txt”) ;
FileWriter fw = null;
FileReader fr = null;
try {
//创建流
fw = new FileWriter(dest);
fr = new FileReader(src);
IoUtil.copy(fr,fw);
} catch (IOException e) {
//抛出一个运行时异常(直接停止掉程序)
throw new RuntimeException(“运行时异常”,e);
} finally {
try {
//如果是空的 说明流创建失败 失败了不需要关闭
if (fw != null) {
fw.close();
}
} catch (Exception e) {
//关闭资源失败 停止程序
throw new RuntimeException(“关闭资源失败”);
}finally {
try {
if (fr != null) {
fr.close();
}
} catch (Exception e) {
throw new RuntimeException(“关闭资源失败”);
}
}
}
源码解析:
链接:待补充
方法名称:cn.hutool.core.io.IoUtil.copy(java.io.Reader, java.io.Writer, int)
方法描述
将Reader中的内容复制到Writer中,拷贝后不关闭Reader
支持版本及以上
参数描述:
| 参数名 | 描述 |
| — | — |
| Reader reader |
reader Reader
|
| Writer writer |
writer Writer
|
| int bufferSize |
bufferSize 缓存大小
|
返回值:
传输的byte数
参考案例:
//事先创建源文件,目标文件可以不用创建
File src = new File(“C:\Users\Administrator\Desktop\xuzhu/copyTest1.txt”) ;
File dest = new File(“C:\Users\Administrator\Desktop\xuzhu/toCopyTest1.txt”) ;
FileWriter fw = null;
FileReader fr = null;
try {
//创建流
fw = new FileWriter(dest);
fr = new FileReader(src);
IoUtil.copy(fr,fw,NioUtil.DEFAULT_MIDDLE_BUFFER_SIZE);
} catch (IOException e) {
//抛出一个运行时异常(直接停止掉程序)
throw new RuntimeException(“运行时异常”,e);
} finally {
try {
//如果是空的 说明流创建失败 失败了不需要关闭
if (fw != null) {
fw.close();
}
} catch (Exception e) {
//关闭资源失败 停止程序
throw new RuntimeException(“关闭资源失败”);
}finally {
try {
if (fr != null) {
fr.close();
}
} catch (Exception e) {
throw new RuntimeException(“关闭资源失败”);
}
}
}
源码解析:
链接:待补充
方法名称:cn.hutool.core.io.IoUtil.copy(java.io.Reader, java.io.Writer, int, cn.hutool.core.io.StreamProgress)
方法描述
将Reader中的内容复制到Writer中,拷贝后不关闭Reader
支持版本及以上
参数描述:
| 参数名 | 描述 |
| — | — |
| Reader reader |
reader Reader
|
| Writer writer |
writer Writer
|
| int bufferSize |
bufferSize 缓存大小
|
| StreamProgress streamProgress |
streamProgress 进度处理器
|
返回值:
传输的byte数
参考案例:
public class StreamProgressObj implements StreamProgress {
@Override
public void start() {
System.out.println(“copy操作进度开始”);
}
@Override
public void progress(long progressSize) {
System.out.println(“当前copy操作进度:”+progressSize);
}
@Override
public void finish() {
System.out.println(“copy操作进度结束”);
}
}
public class IoUtilTest {
@Test
public void copyTest3(){
//事先创建源文件,目标文件可以不用创建
File src = new File(“C:\Users\Administrator\Desktop\xuzhu/copyTest1.txt”) ;
File dest = new File(“C:\Users\Administrator\Desktop\xuzhu/toCopyTest1.txt”) ;
FileWriter fw = null;
FileReader fr = null;
try {
//创建流
fw = new FileWriter(dest);
fr = new FileReader(src);
StreamProgressObj streamProgressObj = new StreamProgressObj();
IoUtil.copy(fr,fw,1024,streamProgressObj);
} catch (IOException e) {
//抛出一个运行时异常(直接停止掉程序)
throw new RuntimeException(“运行时异常”,e);
} finally {
try {
//如果是空的 说明流创建失败 失败了不需要关闭
if (fw != null) {
fw.close();
}
} catch (Exception e) {
//关闭资源失败 停止程序
throw new RuntimeException(“关闭资源失败”);
}finally {
try {
if (fr != null) {
fr.close();
}
} catch (Exception e) {
throw new RuntimeException(“关闭资源失败”);
}
}
}
}
}
源码解析:
链接:待补充
方法名称:cn.hutool.core.io.IoUtil.copy(java.io.InputStream, java.io.OutputStream)
方法描述
拷贝流,使用默认Buffer大小,拷贝后不关闭流
支持版本及以上
参数描述:
| 参数名 | 描述 |
| — | — |
| InputStream in |
in 输入流
|
| OutputStream out |
out 输出流
|
返回值:
传输的byte数
参考案例:
//事先创建源文件,目标文件可以不用创建
File src = new File(“C:\Users\Administrator\Desktop\xuzhu/copyTest1.txt”) ;
File dest = new File(“C:\Users\Administrator\Desktop\xuzhu/toCopyTest1.txt”) ;
InputStream input = null;
OutputStream outputStream = null;
try {
//创建流
input = new FileInputStream(src);
outputStream = new FileOutputStream(dest);
IoUtil.copy(input,outputStream);
} catch (IOException e) {
//抛出一个运行时异常(直接停止掉程序)
throw new RuntimeException(“运行时异常”,e);
} finally {
try {
//如果是空的 说明流创建失败 失败了不需要关闭
if (input != null) {
input.close();
}
} catch (Exception e) {
//关闭资源失败 停止程序
throw new RuntimeException(“关闭资源失败”);
}finally {
try {
if (outputStream != null) {
outputStream.close();
}
} catch (Exception e) {
throw new RuntimeException(“关闭资源失败”);
}
}
}
源码解析:
链接:待补充
方法名称:cn.hutool.core.io.IoUtil.copy(java.io.InputStream, java.io.OutputStream, int)
方法描述
拷贝流,拷贝后不关闭流
支持版本及以上
参数描述:
| 参数名 | 描述 |
| — | — |
| InputStream in |
in 输入流
|
| OutputStream out |
out 输出流
|
| int bufferSize |
bufferSize 缓存大小
|
返回值:
传输的byte数
参考案例:
//事先创建源文件,目标文件可以不用创建
File src = new File(“C:\Users\Administrator\Desktop\xuzhu/copyTest1.txt”) ;
File dest = new File(“C:\Users\Administrator\Desktop\xuzhu/toCopyTest1.txt”) ;
InputStream input = null;
OutputStream outputStream = null;
try {
//创建流
input = new FileInputStream(src);
outputStream = new FileOutputStream(dest);
IoUtil.copy(input,outputStream,NioUtil.DEFAULT_BUFFER_SIZE);
} catch (IOException e) {
//抛出一个运行时异常(直接停止掉程序)
throw new RuntimeException(“运行时异常”,e);
} finally {
try {
//如果是空的 说明流创建失败 失败了不需要关闭
if (input != null) {
input.close();
}
} catch (Exception e) {
//关闭资源失败 停止程序
throw new RuntimeException(“关闭资源失败”);
}finally {
try {
if (outputStream != null) {
outputStream.close();
}
} catch (Exception e) {
throw new RuntimeException(“关闭资源失败”);
}
}
}
源码解析:
最后
自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。
深知大多数Java工程师,想要提升技能,往往是自己摸索成长,自己不成体系的自学效果低效漫长且无助。
因此收集整理了一份《2024年Java开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Java开发知识点,不论你是刚入门Java开发的新手,还是希望在技术上不断提升的资深开发者,这些资料都将为你打开新的学习之门!
如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!
由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!
e) {
//关闭资源失败 停止程序
throw new RuntimeException(“关闭资源失败”);
}finally {
try {
if (outputStream != null) {
outputStream.close();
}
} catch (Exception e) {
throw new RuntimeException(“关闭资源失败”);
}
}
}
源码解析:
最后
自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。
深知大多数Java工程师,想要提升技能,往往是自己摸索成长,自己不成体系的自学效果低效漫长且无助。
因此收集整理了一份《2024年Java开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
[外链图片转存中…(img-Ps6GMSdw-1715590450968)]
[外链图片转存中…(img-Oq080zxR-1715590450969)]
[外链图片转存中…(img-9vuQIANL-1715590450969)]
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Java开发知识点,不论你是刚入门Java开发的新手,还是希望在技术上不断提升的资深开发者,这些资料都将为你打开新的学习之门!
如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!
由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!