当前位置: 首页 > news >正文

网站建设模版文档网络培训思想汇报大学生

网站建设模版文档,网络培训思想汇报大学生,做兼职去哪个网站,wordpress 开启手机版正如我在这里 #xff0c; 这里 #xff0c; 这里和这里所讨论的那样#xff0c; Groovy和Java SE 7都为Java文件管理提供了改进。 但是#xff0c;当特定的Java应用程序尚不能使用Java SE 7或Groovy进行文件管理时#xff0c;仍然可以通过使用Guava的Files类获得改进的文… 正如我在这里 这里 这里和这里所讨论的那样 Groovy和Java SE 7都为Java文件管理提供了改进。 但是当特定的Java应用程序尚不能使用Java SE 7或Groovy进行文件管理时仍然可以通过使用Guava的Files类获得改进的文件管理体验。 与其他许多编程语言相比Java中的文件处理似乎总是有些困难。 Java SE 7当然可以通过NIO.2极大地提高Java的文件处理能力 但是并不是每个项目都可以使用Java SE7。对于那些不能使用Java SE 7的项目Guava的Files类是一个很好的中间解决方案可以更轻松地处理文件。 这里需要特别注意的是Java SE 7引入了自己的Files类 因此如果在同一代码中使用Files的Java版本则Java SE 7中对Guava的Files类的任何使用都必须完全作用域。 我的示例是用Java SE 7编写和构建的但是我避免使用Java SE 7的Files类因此不需要完全限定Guava的同名类。 文件创建 Guava的Files类包含几个重载的write方法可轻松地将内容写入文件。 下一个代码示例演示如何使用Files.writebyte []File 。 演示Files.writebyte []File /*** Demonstrate writing bytes to a specified file.* * param fileName Name of file to be written to.* param contents Contents to be written to file.*/public void demoFileWrite(final String fileName, final String contents){checkNotNull(fileName, Provided file name for writing must NOT be null.);checkNotNull(contents, Unable to write null contents.);final File newFile new File(fileName);try{Files.write(contents.getBytes(), newFile);}catch (IOException fileIoEx){err.println( ERROR trying to write to file fileName - fileIoEx.toString());}} 从第一个代码示例中可以得到一些观察结果它们将适用于本文中的所有其他代码示例。 首先我利用静态导入的Guava Preconditions类来进行轻松检查以确保所提供的参数不为null。 该代码的第二个共同特征是它显式捕获并“处理”已检查的异常IOException 。 本文中演示的所有其他Files方法类似地引发相同的检查异常。 文件复制 下一个示例演示使用Guava的Files.copyFileFile方法名称为“ copy”的几种重载方法之一复制文件非常容易。 演示Files.copyFileFile /*** Demonstrate simple file copying in Guava. This demonstrates one of the* numerous overloaded copy methods provided by Guavas Files class. The* version demonstrated here copies one provided File instance to another* provided File instance.* * param sourceFileName Name of file that is to be copied.* param targetFileName Name of file that is result of file copying.*/public void demoSimpleFileCopy(final String sourceFileName, final String targetFileName){checkNotNull(sourceFileName, Copy source file name must NOT be null.);checkNotNull(targetFileName, Copy target file name must NOT be null.);final File sourceFile new File(sourceFileName);final File targetFile new File(targetFileName);try{Files.copy(sourceFile, targetFile);}catch (IOException fileIoEx){err.println(ERROR trying to copy file sourceFileName to file targetFileName - fileIoEx.toString());}} 文件移动 使用番石榴移动文件就像复制一样容易。 下一个代码段中演示了Files.moveFileFile方法。 演示Files.moveFileFile /*** Demonstrate moving a file with Guavas Files.move(File,File).* * param sourceFileName Path/name of File to be moved.* param targetFileName Path/name of Destination of file.*/public void demoMove(final String sourceFileName, final String targetFileName){checkNotNull(sourceFileName, Move source file name must NOT be null.);checkNotNull(targetFileName, Move destination name must NOT be null.);final File sourceFile new File(sourceFileName);final File targetFile new File(targetFileName);try{Files.move(sourceFile, targetFile);}catch (IOException fileIoEx){err.println(ERROR trying to move file sourceFileName to targetFileName - fileIoEx.toString());}} 比较文件 使用Gauva Files.equalFileFile方法可以直接确定两个文件是否相同 演示Files.equalFileFile /*** Demonstrate using Guavas Files.equal(File,File) to compare contents of* two files.* * param fileName1 Name of first file to be compared.* param fileName2 Name of second file to be compared.*/public void demoEqual(final String fileName1, final String fileName2){checkNotNull(fileName1, First file name for comparison must NOT be null.);checkNotNull(fileName2, Second file name for comparison must NOT be null.);final File file1 new File(fileName1);final File file2 new File(fileName2);try{out.println(File fileName1 (Files.equal(file1, file2) ? IS : is NOT) the same as file fileName2 .);}catch (IOException fileIoEx){err.println(ERROR trying to compare two files fileName1 and fileName2 - fileIoEx.toString());}} 接触文件 可以使用Guava的Files.touchFile轻松完成触摸文件以创建新的空文件或更新现有文件上的时间戳的操作 如下面的代码示例所示。 演示Files.touchFile /*** Demonstrate Guavas Files.touch(File) method.* * param fileNameToBeTouched Name of file to be touch-ed.*/public void demoTouch(final String fileNameToBeTouched){checkNotNull(fileNameToBeTouched, Unable to touch a null filename.);final File fileToTouch new File(fileNameToBeTouched);try{Files.touch(fileToTouch);}catch (IOException fileIoEx){err.println(ERROR trying to touch file fileNameToBeTouched - fileIoEx.toString());}} 检索文件内容 通过使人联想到Groovy的GDK扩展File.getText 番石榴的Files.toStringFileCharset使得检索文件的文本内容变得容易。 演示Files.toStringFileCharset /*** Demonstrate retrieving text contents of a specified file with Guavas * Files.toString(File) method.* * param nameOfFileToGetTextFrom Name of file from which text is to be* retrieved.*/public void demoToString(final String nameOfFileToGetTextFrom){checkNotNull(nameOfFileToGetTextFrom, Unable to retrieve text from null.);final File sourceFile new File(nameOfFileToGetTextFrom);try{final String fileContents Files.toString(sourceFile, Charset.defaultCharset());out.println(Contents of File nameOfFileToGetTextFrom are: fileContents);}catch (IOException fileIoEx){err.println(ERROR trying to get text contents of file nameOfFileToGetTextFrom - fileIoEx.toString());}} 临时目录创建 Guava使使用Files.createTempDir生成临时目录变得容易。 演示Files.createTempDir /*** Demonstrate Guavas Files.createTempDir() method for creating a temporary* directory.*/public void demoTemporaryDirectoryCreation(){final File newTempDir Files.createTempDir();try{out.println(New temporary directory is newTempDir.getCanonicalPath() .);}catch (IOException ioEx){err.println(ERROR: Unable to create temporary directory - ioEx.toString());}} 我在这里没有提供代码示例但是值得注意的是Guava提供了一种方便的方法来创建新目录该方法将使用其Files.createParentDirsFile方法创建所有必需的新父目录。 以行的形式检索文件的内容 有时最方便的是将文件的内容作为一系列的行来获取以便可以处理每一行。 在Groovy中通常使用readLines和eachLine的重载版本来完成此操作。 番石榴通过其Files.readLinesFileCharset方法提供了与Groovy的File.readLines()类似的功能。 在下面的代码示例中对此进行了演示。 演示Files.readLinesFileCharset /*** Demonstrate extracting lines from file.* * param fileName Name of file from which lines are desired.*/public void demoRetrievingLinesFromFile(final String fileName){final File file new File(fileName);try{final ListString lines Files.readLines(file, Charset.defaultCharset());for (final String line : lines){out.println( line);}}catch (IOException ioEx){err.println(ERROR trying to retrieve lines from file fileName - ioEx.toString());}} readLines的另一个重载版本很有趣因为它允许指定LineProcessor回调以终止比文件结尾更早的行返回。 读取文件的第一行 我遇到了无数情况其中仅读取文件的第一行很有用。 第一行可以告诉我的代码什么类型的脚本正在运行提供XML序言信息或文件内容的其他有趣概述数据。 Guava使使用Files.readFirstLineFileCharset方法仅检索第一行变得容易。 下一个代码清单对此进行了演示。 演示Files.readFirstLineFileCharset /*** Demonstrate extracting first line of file.* * param fileName File from which first line is to be extracted.*/public void demoRetrievingFirstLineFromFile(final String fileName){final File file new File(fileName);try{final String line Files.readFirstLine(file, Charset.defaultCharset());out.println(First line of fileName is line .);}catch (IOException fileIoEx){err.println(ERROR trying to retrieve first line of file fileName - fileIoEx.toString());}} 还有更多 尽管我在本文中讨论并演示了几个有用的Files方法但该类还有很多其他提供。 其中一些功能包括使用Files.appendCharSequenceFileCharset附加到现有文件的功能使用Files.getChecksumFileChecksum获取文件的校验和 使用Files.getDigestFileMessageDigest 获取文件的摘要的功能。 访问的BufferedReader与Files.newReader文件字符集 访问的BufferedWriter与Files.newWriter文件字符集 和访问MappedByteBuffer通过重载映射到一个基础文件Files.map方法。 结论 使用Guava的Files类用Java处理文件更加容易和方便。 Guava为无法利用Groovy或Java SE 7的文件处理便利的Java应用程序带来了文件处理便利。 祝您编程愉快别忘了分享 参考来自JCG合作伙伴 Dustin Marx的Guava的Files类中的Java文件管理 来自Inspired by Actual Events博客。 翻译自: https://www.javacodegeeks.com/2012/09/guava-files-java-file-management.html
http://www.pierceye.com/news/812437/

相关文章:

  • 房地产网站建设案例wordpress 判断移动端
  • 网站开发过程文档网站代码需要注意什么问题
  • 怎么选一个适合自己的网站wordpress怎么修改后台登录地址
  • 网页制作与网站建设自考西安千秋网络科技有限公司
  • 建设网站的费用入什么科目永久免费google搜索引擎
  • 拍卖网站怎么做梧州网页设计师招聘
  • 炫酷网站源码下载网站建设副业
  • 做dw和ps的网站教学做网站属于什么费用
  • 秦皇岛网站制作小程序开发wordpress调用分类标签
  • 网站绑定别名好吗台州品牌网站设计
  • 安徽省住房和城乡建设厅网站域名东莞松山湖华为小镇
  • 购物网站开发教程中文版做一个自己的免费网站吗
  • 网站建设网络推广平台湖北省级建设主管部门网站
  • 手机网站建设口碑好google海外版
  • 网站加视频播放设计怎么做的oa系统管理平台
  • 湛江有网站的公司名称秘密入口3秒自动进入
  • 网站建设需要租用什么北京网站设计制作过程
  • 设计高端网站建设电子商务平台的建设步骤
  • 对外网站ipv6建设方案模板网站提交地址
  • 网站优化包括哪些内容哪一个网站做专栏作家好点
  • 网站外包 博客网络广告的优势有哪些
  • 福建网站建设网wordpress批量替换标签
  • 网站建设 海外房产商标注册证查询
  • 门户网站建设要求易申建设网站
  • 现在创业什么行业最好seo全网营销公司
  • 网站 域名 授权服务器 分布式网站模板英文
  • wordpress 二维码插件搜索引擎优化的方法
  • 国外申请域名的网站CC wordpress 攻击
  • 能发外链的网站中国机械加工网加热炉节能
  • 个人网站推广 公司网站地址栏小图标