commons-io

作者: jsjack_wang | 来源:发表于2018-04-11 16:30 被阅读0次

    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.comhttp://ifeve.com/commons-io/

    相关文章

      网友评论

        本文标题:commons-io

        本文链接:https://www.haomeiwen.com/subject/irrzhftx.html