第8章—JSP中的文件操作.ppt

  1. 1、本文档共27页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
第8章 JSP中的文件操作 Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011 Aspose Pty Ltd. 主要内容 1.操作文件和文件夹 2.文件的读写 3.文件操作应用 Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011 Aspose Pty Ltd. 1.操作文件和文件夹 1、获得文件夹的物理路径 在JSP中,使用request对象的getRealPath()方法来获得文件夹的物理路径。 如: center 本章JSP文件所在路径为:br %=request.getRealPath(/)%br /center 在调用request对象的getRealPath()方法时,使用斜杠“/”代表本Web应用地址。 Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011 Aspose Pty Ltd. 2、创建文件和文件夹 File类是Java中用于文件操作的类,它存在于包java.io.File中。File类提供了一些成员函数来操纵文件和文件夹。 利用File类的mkdir()方法创建文件夹。 使用createNewFile()方法创建文件。 String path = request.getRealPath(/); String tmp_path = path+tmp; File fp1 = new File(tmp_path); fp1.mkdir(); File fp2 = new File(tmp_path,a.txt); fp2.createNewFile(); File fp3 = new File(tmp_path,b.txt); fp3.createNewFile(); File fp4 = new File(tmp_path,c.txt); fp4.createNewFile(); Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011 Aspose Pty Ltd. 3、列出文件夹下的文件和文件夹 File类的listFiles()方法获得指定文件夹中的所有内容,包括文件夹和文件,并将结果返回到数组中。 String path = request.getRealPath(/); String tmp_path = path+tmp; File fp1 = new File(tmp_path); File filelist[]=fp1.listFiles(); 使用getName()方法获得文件夹和文件的名称。 Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011 Aspose Pty Ltd. 例如: % String path = request.getRealPath(/); String tmp_path = path+tmp; File fp1 = new File(tmp_path); File filelist[]=fp1.listFiles(); % center 文件夹%=tmp_path%br 中有以下文件夹和文件:br % for(int i=0; ifilelist.length; i++){ % %=filelist[i].getName()%br %}% Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011 Aspose Pty Ltd. 4、删除文件和文件夹 使用File类对象的exists()方法判断文件和文件夹是否存在,如果存在,就使用delete()方法将其删除。例子见书。 5、取得文件大小 使用File类对象的length()方法。

文档评论(0)

wuyoujun92 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档