Apache Commons IO组件介绍使用
扫描二维码
随时随地手机看文章
介绍
java io操作是开发中比较常用的技术,但是如果每次都使用原生的IO流来操作那么会显得很不比较繁琐,
因此我们可以借助apache commons io包下工具类来帮我们实现一些常用的操作。
比如:拷贝、将流转为字符串等常用功能
备注:apache commons io包里的代码其实并不复杂,我们可以看看它的源码研究下人家是怎么写的,可以参考一下。
核心工具类
IOUtils类
General IO stream manipulation utilities
This class provides static utility methods for input/output operations.
All the methods in this class that read a stream are buffered internally.
This means that there is no cause to use a BufferedInputStream or BufferedReader.
The default buffer size of 4K has been shown to be efficient in tests.
备注:IOUtils主要提供更便捷的操作流的方法
主要方法
toXxx/read - these methods read data from a streamwrite - these methods write data to a streamcopy - these methods copy all the data from one stream to anothercontentEquals - these methods compare the content of two streamsFileUtils类
General file manipulation utilities.
Facilities are provided in the following areas
备注:主要提供方便操作文件/目录的方法
主要方法
writing to a file
reading from a file
make a directory including parent directories
copying files and directories
deleting files and directories
converting to and from a URL
listing files and directories by filter and extension
comparing file content
file last changed date
calculating a checksum
总结
使用commons io可以提供我们更便捷的基本操作流方式,我们应该去看下它的实现源码,虽然比较简单但是也值得参考。
复杂情况下还是需要我们自己写。
Apache Commons下都是些日常开发会用到的一些组件,我们应该好好研究一下,起码对初中级的程序员还是很有帮助的
参考
1、http://commons.apache.org/proper/commons-io/