网站大量收购独家精品文档,联系QQ:2885784924

JAVA语言程序设计:流.ppt

  1. 1、本文档共10页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多

流1File类文件是相关记录或放在一起的数据的集合.Java程序一般通过java.io.File类对象,获取文件本身的一些信息,例如文件所在的目录、文件的长度、文件读写权限等,不涉及对文件的读写操作。1File类的构造方法File(Stringpathname)Filef=newFile(c:\\data\\temp.dat”);Filef=newFile(data\\temp.dat”);Filef=newFile(temp.dat”);File(Stringparent,Stringchild)Filef=newFile(c:\\data,temp.dat);Filef=newFile(data,temp.dat);File(Fileparent,Stringchild)Filef=newFile(newFile(c:\\data),temp.dat);Filef=newFile(newFile(data),temp.dat);1File类的常用方法File类对象既可以是文件对象,也可以是一个文件夹对象,以下是常用方法:booleanisFile()booleanisDirectory()booleanexists()StringgetName()longlength()StringgetAbsolutePath()StringgetCanonicalPath()booleancanRead()booleancanWrite()booleanisHidden()longlastModified()booleandelete()1File类File类的文件对象的常用的方法:booleancreateNewFile()File类的文件夹对象的常用的方法:booleanmkdir()booleanmkdirs()File[]listFiles()String[]list()Filefile=newFile(directory);file.mkdir();file=newFile(directory\\abc.txt);file.createNewFile();file.delete();1File类 System.out.println(请输入想创建的文件名:); StringfileName=newScanner(System.in).nextLine(); Filef1=newFile(fileName); if(f1.exists()){ if(f1.isFile()){ System.out.println(文件名:+f1.getName()); System.out.println(规范路径:+f1.getCanonicalPath()); System.out.println(文件大小:+f1.length()+字节); }else{ String[]s=f1.list(); System.out.println(文件夹+f1+共有+s.length+对象); for(inti=0;is.length;i++) System.out.println(s[i]); } }C:\ProgramFiles\Java文件夹Java共有2对象jre1.5.0_05jre6 publicstaticvoidlistChild(Filedir,intlevel){ StringBuffers=newStringBuffer(|--); for(inti=0;ilevel;i++){ s.insert(0,|); } File[]childs=dir.listFiles(); intlength=childs==null?0:childs.length; for(inti=0;ilength;i++){ if(childs[i].isDirectory()){ listChild(childs[i],level+1); } System.out.println(s.toString()+childs[i].getName()); } }2I/O流大部分程序都需要输入/输出处理,比如从键盘读取数据、向屏幕中输出数据

文档评论(0)

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

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

1亿VIP精品文档

相关文档