编程开发

展开

commons-io-2.4.jar下载-commons-io-2.4.jar免费版下载

大小:158KB语言:中文 类别:编程开发系统:Win All
简介|教程|评论(0)
软件性质:免费软件时间:2024-01-08 10:32:27

标签:

软件介绍

commons-io-2.4.jar包是Commons项目中用来处理IO流的一些工具类包,使用commons-io.jar包可以帮助开发的框架思路,马上下载commons-io-2.4.jar使用吧。

commons-io-2.4.jar

文件说明

  Commons项目中用来处理IO的一些工具类包commons-io.jar

用法介绍

  //直接将IO流转成字符串

  InputStream in = new URL( "http://jakarta.apache.org" ).openStream();

  try {

  System.out.println( IOUtils.toString( in ) );

  } finally {

  IOUtils.closeQuietly(in);

  }

  //读取文本文件的所有行

  File file = new File("/commons/io/project.properties");

  List lines = FileUtils.readLines(file, "UTF-8");

  //路径处理

  String filename = "C:/commons/io/../lang/project.xml";

  String normalized = FilenameUtils.normalize(filename);

  // result is "C:/commons/lang/project.xml"

  //获取目录空间

  long freeSpace = FileSystemUtils.freeSpace("C:/");

  //打印文件的所有行

  LineIterator it = FileUtils.lineIterator(file, "UTF-8");

  try {

  while (it.hasNext()) {

  String line = it.nextLine();

  /// do something with line

  }

  } finally {

  LineIterator.closeQuietly(iterator);

  }

九点软件园小编对真实下载地址介绍

1:该下载地址为九点软件园本地下载地址,commons-io-2.4.jar下载包预览图如下:

commons-io-2.4.jar下载包预览图

2:下载包的正确包名:CommonsIO22Jar_9a9m.com.zip

热门推荐
推荐教程
猜你喜欢
用户评论
本类排行