1.maven
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.5</version>
</dependency>
2.具体小例子
public static void main(String[] args) throws Exception {
InputStream in = new URL("http://commons.apache.org").openStream();
try {
System.out.println(IOUtils.toString(in));
} finally {
IOUtils.closeQuietly(in);
}
}
3.总结
Commons-IO 包括 工具类 (utility classes), 字节序列类 (endian classes), 行迭代器 (line iterator), 文件过滤器 (file filters),文件比较器 (file comparators) 和 流实现 (stream implementations)。还是那句话,如果用到对流的操作,可以研究研究这里的API
官网地址:http://commons.apache.org/proper/commons-io/index.html
并发编程网 - ifeve.com:http://ifeve.com/commons-io/
网友评论