雷火电竞官网-中国知名电竞赛事平台

當下軟件園 / 匯聚當下最新最酷的軟件下載站!
當下軟件園

您的位置: 首頁 > 系統工具 > 升級補丁 > commons-io-2.4.jar 綠色免費版

  commons-io-2.4.jar是Commons項目中主要用來處理IO流的工具包,使用這個jar包可以幫助開發的框架思路,有需要的開發人員可以下載這個jar包。

【文件說明】

  Commons項目中用來處理IO的一些工具類包commons-io.jar

commons-io-2.4.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);
  }

軟件特別說明

標簽: jar

其他版本下載
網友評論
回頂部 去下載

關于本站|下載幫助|下載聲明|軟件發布|聯系我們

Copyright ? 2005-2024 m.obymc.com.All rights reserved.

浙ICP備2024132706號-1 浙公網安備33038102330474號