Java:【文件和I/O流】
前言
1.File的用于创建目录、用于表示目录、用于创建文件、用于表示文件和用于删除文件或目录。
2.字符流:abstract class Reader和Writer操作的是文本文件
3.缓冲字符流(BufferedReader和BufferedWriter)每次读取或写入一行
缓冲流(BufferedInputStream和BufferedOutputStream)每次读取或写入一个数组的大小。
4.打印字符流属于处理流,不能和介质直接相连
5.装饰器模式:动态的给对象增加职责,提供了一个比继承更好地弹性方案。
正文
文件java.io.File
An abstract representation of file and directory pathnames,只用于表示文件目录的信息(文件、类型和扩展名),不能对文件内容进行访问。其中\只适用于windows,而/路径分隔符适用unix和window。
1.API
1)File(String pathname)
Creates a new File instance by converting the given pathname string into an abstract pathname
2) long length()
Returns the length of the file denoted by this abstract pathname.获取文件的大小,如果文件内容为空或者文件不存在就返回零。
3) String getName()
Returns the name o
文章来源: kunnan.blog.csdn.net,作者:iOS逆向,版权归原作者所有,如需转载,请联系作者。
原文链接:kunnan.blog.csdn.net/article/details/24844661
- 点赞
- 收藏
- 关注作者
评论(0)