10hutool实战:FileUtil 文件工具类(获取输出流)

举报
小虚竹 发表于 2021/10/18 23:43:34 2021/10/18
【摘要】 技术活,该赏 关注+一键三连(点赞,评论,收藏)再看,养成好习惯 12 hutool实战(带你掌握里面的各种工具)目录 用途:FileUtil 文件工具类(获取输出流) 使用场景 获取不同的输出流...
技术活,该赏
关注+一键三连(点赞,评论,收藏)再看,养成好习惯

  
 
  • 1
  • 2

hutool实战(带你掌握里面的各种工具)目录

用途:FileUtil 文件工具类(获取输出流)

使用场景

获取不同的输出流

项目引用

此博文的依据:hutool-5.6.5版本源码

        <dependency>
			<groupId>cn.hutool</groupId>
			<artifactId>hutool-core</artifactId>
			<version>5.6.5</version>
		</dependency>

  
 
  • 1
  • 2
  • 3
  • 4
  • 5

方法摘要

方法明细

方法名称:cn.hutool.core.io.FileUtil.getOutputStream(java.io.File)

方法描述

获得一个输出流对象

支持版本及以上

参数描述:

参数名 描述
File file
file 文件

返回值:

输出流对象

参考案例:

		File src = new File("C:\\Users\\Administrator\\Desktop\\xuzhu\\getOutputStreamTest.txt") ;
		BufferedOutputStream bufferedOutputStream = null;

		try {
			//创建流 src文件如果不存在,程序会帮忙创建
			bufferedOutputStream = FileUtil.getOutputStream(src);
			String str = "getOutputStreamTest内容1 \ngetOutputStreamTest内容2";
			byte[] sb = str.getBytes();
			bufferedOutputStream.write(sb);
			bufferedOutputStream.flush();
		} catch (IOException e) {
			//抛出一个运行时异常(直接停止掉程序)
			throw new RuntimeException("运行时异常",e);
		}finally {
			IoUtil.close(bufferedOutputStream);
		}

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

image-20210630657817

源码解析:

IoUtil.toBuffered和FileUtil.getOutputStream对比下
链接:待补充

  
 
  • 1
  • 2

方法明细

方法名称:cn.hutool.core.io.FileUtil.getOutputStream(java.lang.String)

方法描述

获得一个输出流对象

支持版本及以上

参数描述:

参数名 描述
String path
path 输出到的文件路径,绝对路径

返回值:

输出流对象

参考案例:

		BufferedOutputStream bufferedOutputStream = null;

		try {
			//创建流 src文件如果不存在,程序会帮忙创建
			bufferedOutputStream = FileUtil.getOutputStream("C:\\Users\\Administrator\\Desktop\\xuzhu\\getOutputStreamTest1.txt");
			String str = "getOutputStreamTest内容1 \ngetOutputStreamTest内容2";
			byte[] sb = str.getBytes();
			bufferedOutputStream.write(sb);
			bufferedOutputStream.flush();
		} catch (IOException e) {
			//抛出一个运行时异常(直接停止掉程序)
			throw new RuntimeException("运行时异常",e);
		}finally {
			IoUtil.close(bufferedOutputStream);
		}

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

image-202106306627339

源码解析:

IoUtil.toBuffered和FileUtil.getOutputStream对比下
链接:待补充

  
 
  • 1
  • 2

方法明细

方法名称:cn.hutool.core.io.FileUtil.getWriter(java.lang.String, java.lang.String, boolean)

方法描述

获得一个带缓存的写入对象

支持版本及以上

参数描述:

参数名 描述
String path
path 输出路径,绝对路径
String charsetName
charsetName 字符集
boolean isAppend
isAppend 是否追加

返回值:

BufferedWriter对象

参考案例:


		BufferedWriter bufferedWriter = null;
		try {
			//是否追加
			Boolean isAppend = false;
			//创建流
			bufferedWriter = FileUtil.getWriter("C:\\Users\\Administrator\\Desktop\\xuzhu\\getWriterTest.txt",CharsetUtil.UTF_8,isAppend);
			String str = "getWriterTest1 \ngetWriterTest2";
			bufferedWriter.write(str);
			bufferedWriter.flush();
		} catch (IOException e) {
			//抛出一个运行时异常(直接停止掉程序)
			throw new RuntimeException("运行时异常",e);
		}finally {
			IoUtil.close(bufferedWriter);
		}

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

image-202106306409815

源码解析:

IoUtil.toBuffered和FileUtil.getWriter对比下
链接:待补充

  
 
  • 1
  • 2

方法明细

方法名称:cn.hutool.core.io.FileUtil.getWriter(java.lang.String, java.nio.charset.Charset, boolean)

方法描述

获得一个带缓存的写入对象

支持版本及以上

参数描述:

参数名 描述
String path
path 输出路径,绝对路径
Charset charset
charset 字符集
boolean isAppend
isAppend 是否追加

返回值:

BufferedWriter对象

参考案例:

		BufferedWriter bufferedWriter = null;
		try {
			//是否追加
			Boolean isAppend = true;
			//创建流
			bufferedWriter = FileUtil.getWriter("C:\\Users\\Administrator\\Desktop\\xuzhu\\getWriterTest.txt",CharsetUtil.CHARSET_UTF_8,isAppend);
			String str = "getWriterTest1 \ngetWriterTest2";
			bufferedWriter.write(str);
			bufferedWriter.flush();
		} catch (IOException e) {
			//抛出一个运行时异常(直接停止掉程序)
			throw new RuntimeException("运行时异常",e);
		}finally {
			IoUtil.close(bufferedWriter);
		}

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

image-202106306742810

源码解析:

链接:待补充

  
 
  • 1

方法明细

方法名称:cn.hutool.core.io.FileUtil.getWriter(java.io.File, java.lang.String, boolean)

方法描述

获得一个带缓存的写入对象

支持版本及以上

参数描述:

参数名 描述
File file
file 输出文件
String charsetName
charsetName 字符集
boolean isAppend
isAppend 是否追加

返回值:

BufferedWriter对象

参考案例:


		File src = new File("C:\\Users\\Administrator\\Desktop\\xuzhu\\getWriterTest.txt");
		BufferedWriter bufferedWriter = null;
		try {
			//是否追加
			Boolean isAppend = false;
			//创建流
			bufferedWriter = FileUtil.getWriter(src,CharsetUtil.UTF_8,isAppend);
			String str = "getWriterTest1 \ngetWriterTest2";
			bufferedWriter.write(str);
			bufferedWriter.flush();
		} catch (IOException e) {
			//抛出一个运行时异常(直接停止掉程序)
			throw new RuntimeException("运行时异常",e);
		}finally {
			IoUtil.close(bufferedWriter);
		}

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

源码解析:

链接:待补充

  
 
  • 1

方法明细

方法名称:cn.hutool.core.io.FileUtil.getWriter(java.io.File, java.nio.charset.Charset, boolean)

方法描述

获得一个带缓存的写入对象

支持版本及以上

参数描述:

参数名 描述
File file
file 输出文件
Charset charset
charset 字符集
boolean isAppend
isAppend 是否追加

返回值:

BufferedWriter对象

参考案例:

		File src = new File("C:\\Users\\Administrator\\Desktop\\xuzhu\\getWriterTest.txt");
		BufferedWriter bufferedWriter = null;
		try {
			//是否追加
			Boolean isAppend = false;
			//创建流
			bufferedWriter = FileUtil.getWriter(src,CharsetUtil.CHARSET_UTF_8,isAppend);
			String str = "getWriterTest1 \ngetWriterTest2";
			bufferedWriter.write(str);
			bufferedWriter.flush();
		} catch (IOException e) {
			//抛出一个运行时异常(直接停止掉程序)
			throw new RuntimeException("运行时异常",e);
		}finally {
			IoUtil.close(bufferedWriter);
		}

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

源码解析:

链接:待补充

  
 
  • 1

方法明细

方法名称:cn.hutool.core.io.FileUtil.getPrintWriter(java.lang.String, java.lang.String, boolean)

方法描述

获得一个打印写入对象,可以有print

支持版本及以上

参数描述:

参数名 描述
String path
path 输出路径,绝对路径
String charset
charset 字符集
boolean isAppend
isAppend 是否追加

返回值:

打印对象

参考案例:

		PrintWriter printWriter = null;
		try {
			//是否追加
			Boolean isAppend = false;
			//创建流
			printWriter = FileUtil.getPrintWriter("C:\\Users\\Administrator\\Desktop\\xuzhu\\getPrintWriterTest1.txt",CharsetUtil.UTF_8,isAppend);
			printWriter.write("小虚竹");
			printWriter.append(" 你真帅~");
			//写入时换行
			printWriter.println("我稀罕你");
			printWriter.write("我爱你");

			printWriter.flush();
		} catch (IORuntimeException e) {
			//抛出一个运行时异常(直接停止掉程序)
			throw new RuntimeException("运行时异常",e);
		}finally {
			IoUtil.close(printWriter);
		}

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

image-20210630193358105

源码解析:

PrintWriter的源码解析
链接:待补充

  
 
  • 1
  • 2

方法明细

方法名称:cn.hutool.core.io.FileUtil.getPrintWriter(java.lang.String, java.nio.charset.Charset, boolean)

方法描述

获得一个打印写入对象,可以有print

支持版本及以上

4.1.1

参数描述:

参数名 描述
String path
path 输出路径,绝对路径
Charset charset
charset 字符集
boolean isAppend
isAppend 是否追加

返回值:

打印对象

参考案例:

		PrintWriter printWriter = null;
		try {
			//是否追加
			Boolean isAppend = false;
			//创建流
			printWriter = FileUtil.getPrintWriter("C:\\Users\\Administrator\\Desktop\\xuzhu\\getPrintWriterTest1.txt",CharsetUtil.CHARSET_UTF_8,isAppend);
			printWriter.write("小虚竹");
			printWriter.append(" 你真帅~");
			//写入时换行
			printWriter.println("我稀罕你");
			printWriter.write("我爱你");

			printWriter.flush();
		} catch (IORuntimeException e) {
			//抛出一个运行时异常(直接停止掉程序)
			throw new RuntimeException("运行时异常",e);
		}finally {
			IoUtil.close(printWriter);
		}

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

源码解析:

链接:待补充

  
 
  • 1

方法明细

方法名称:cn.hutool.core.io.FileUtil.getPrintWriter(java.io.File, java.lang.String, boolean)

方法描述

获得一个打印写入对象,可以有print

支持版本及以上

参数描述:

参数名 描述
File file
file 文件
String charset
charset 字符集
boolean isAppend
isAppend 是否追加

返回值:

打印对象

参考案例:

		File src = new File("C:\\Users\\Administrator\\Desktop\\xuzhu\\getPrintWriterTest1.txt");
		PrintWriter printWriter = null;
		try {
			//是否追加
			Boolean isAppend = false;
			//创建流
			printWriter = FileUtil.getPrintWriter(src,CharsetUtil.UTF_8,isAppend);
			printWriter.write("小虚竹");
			printWriter.append(" 你真帅~");
			//写入时换行
			printWriter.println("我稀罕你");
			printWriter.write("我爱你");

			printWriter.flush();
		} catch (IORuntimeException e) {
			//抛出一个运行时异常(直接停止掉程序)
			throw new RuntimeException("运行时异常",e);
		}finally {
			IoUtil.close(printWriter);
		}

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

源码解析:

链接:待补充

  
 
  • 1

方法明细

方法名称:cn.hutool.core.io.FileUtil.getPrintWriter(java.io.File, java.nio.charset.Charset, boolean)

方法描述

获得一个打印写入对象,可以有print

支持版本及以上

5.4.3

参数描述:

参数名 描述
File file
file 文件
Charset charset
charset 字符集
boolean isAppend
isAppend 是否追加

返回值:

打印对象

参考案例:

		File src = new File("C:\\Users\\Administrator\\Desktop\\xuzhu\\getPrintWriterTest1.txt");
		PrintWriter printWriter = null;
		try {
			//是否追加
			Boolean isAppend = false;
			//创建流
			printWriter = FileUtil.getPrintWriter(src,CharsetUtil.CHARSET_UTF_8,isAppend);
			printWriter.write("小虚竹");
			printWriter.append(" 你真帅~");
			//写入时换行
			printWriter.println("我稀罕你");
			printWriter.write("我爱你");

			printWriter.flush();
		} catch (IORuntimeException e) {
			//抛出一个运行时异常(直接停止掉程序)
			throw new RuntimeException("运行时异常",e);
		}finally {
			IoUtil.close(printWriter);
		}

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

源码解析:

链接:待补充

  
 
  • 1

文章来源: xiaoxuzhu.blog.csdn.net,作者:小虚竹,版权归原作者所有,如需转载,请联系作者。

原文链接:xiaoxuzhu.blog.csdn.net/article/details/118367816

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。