java IO实例
import java.io.*; /**
* Created by CLY on 2017/7/23.
*/
public class Main {
public static void main(String[] arg){
testFile();
testFilenameFilter();
testInputStream();
testOutStream();
testCopyImg();
} /**
* File类:
* 能代表一个特定文件的“名称”,也能代表“一个目录下”的一组文件的“名称”。
*/
public static void testFile(){
//作为一个“目录列表器”使用
File file = new File("./");//当前目录
String list_url[] = file.list();
for (String one_url : list_url) {
System.out.println(one_url);
}
} /**
* DirFilter接口:
* 该接口只规定了一个accept()方法。
* 我们可以使用匿名内部类的方式重写该方法。
* 该方法的作用为:判断传入的string 文件名,是否存在于传入的目录列表中
*/
public static void testFilenameFilter(){
File file = new File("./");
FilenameFilter filenameFilter = new FilenameFilter(){
public boolean accept(File dir, String name) {
for (String file_name :
dir.list()) {
if (file_name.equals(name))
return true;
}
return false;
}
};
//查看当前目录下是否存在"pom.xml"这个文件
boolean result = filenameFilter.accept(file, "pom.xml");
System.out.println(result);
} /**
* 所有的流都是站在“内存”的角度说的。
* 如“输入流”,指的就是将其他媒介的流“输入到本机内存的流中(这个本机内存的流就是输入流)”。
* 然后用户再从“内存中的”输入流将数据读出来。
*
* 输出流的相关操作为:“将内存中的流(这个流指的就是输出流)”传到其他媒介的流中,
* 而我们需要做的,自然就是将数据“写”到内存的输入流中去,至于它是怎么传走的我们不用管。
*/ /**
* InputStream和Reader。
*
* InputStream是所有“字节”输入流相关类的超类。
* InputStream接口中的read方法提供“对字节的读取(byte)”
*
* Reader是所有用于“读取字符流”的相关类的超类
* Reader接口中的read方法提供“对字符的读取(char数组或者String)”
*
* 而我们操作时自然是操作字符更顺畅。
* 实际上InputStream的read方法一般也不是给开发者用的,而是给其他类使用的。
* 所以可以看出,整个流程为:
* 先获取到InputStream接口类型的“字节流”数据。
* 然后转化成reader接口类型的“字符流”数据。
* 最后调用reader接口提供的reader方法读出字符。
*/
public static void testInputStream(){
//获取本地“文件名”的对象
File file = new File("./pom.xml"); try {
//FileInputStream是InputStream的一个子实现类,可以从指定文件中读取字节流存到内存中的“InputStream(输入字节流)”中
FileInputStream inputstream = new FileInputStream(file); /**
* InputStreamReader是Reader的一个子实现类
* 是字节流通向字符流的桥梁,“封裝”了InputStream在里头,
* 它以较高级的方式,reader()一次读取一个一个字符,默认读取的是字符的ASCII码
*/
InputStreamReader reader = new InputStreamReader(inputstream);
int ch;
//一次读取一个字符的ASCII码,如果为-1,就表示结束了。
while ((ch = reader.read())!=-1){
System.out.print((char)ch);
}
System.out.println(); /**
* BufferedReader
* 对之前的普通的InputStreamReader的又一次“装饰”
* 提供缓冲的方式读取文本,通过readLine()方法可以一次读取一行,效率高。
*/
FileInputStream inputstream2 = new FileInputStream(file);
InputStreamReader reader2 = new InputStreamReader(inputstream2);
BufferedReader bufferedReader = new BufferedReader(reader2);
String line;
while ((line = bufferedReader.readLine())!=null){
System.out.println(line);
} bufferedReader.close();
reader2.close();
inputstream2.close();
reader.close();
inputstream.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
} /**
* OutputStream和Writer
*
* 与上面同理
* OutputStream负责将“内存中的输出流”输出,
* 然后也提供给我们一个writer方法,让我们把“字节(byte)”写入内存中的输出流。
*
* 而Writer提供的writer方法则是让我们把“字符(char数组或者String)”写入内存中的输出流。
*
* 注意上面的描述,通过write()方法只能将数据写入“内存里的输出流”(相当于缓存起来)。
* 必须得通过flush()方法,才能将所有内存中缓冲的数据发送给目的地。
*/
public static void testOutStream(){
//在当前目录创建一个新文件
File new_file =new File("./test.txt");
try {
if (!new_file.exists()){
new_file.createNewFile();
} /**
* FileWriter的write(String)方法已经可以将字符串写入输出流了。
* 可此处通过“装饰类”BufferedWriter装饰Writter的好处是:
* 加了一个缓冲,缓冲写满后再将数据写入硬盘
* 这样做极大的提高了性能
* 如果单独使用FileWriter也可以,
* 但你每写一个数据,硬盘就有一个写动作,性能极差
*/
String out_words = "hello world";
//true表示对文件再次写入时,会在该文件的结尾续写,并不会覆盖掉。
FileWriter fileWriter = new FileWriter(new_file,true);
BufferedWriter bufferedWriter = new BufferedWriter(fileWriter);
bufferedWriter.write(out_words);
bufferedWriter.flush();
bufferedWriter.close();
fileWriter.close();
} catch (IOException e) {
e.printStackTrace();
}
} /**
* 实例:
* 依靠字节流传输复制图片
*/
public static void testCopyImg(){
//待复制的文件地址
File file_old = new File("./old.jpg");
//新文件地址
File file_new = new File("./new.jpg"); //读取文件到输入字符流中,然后再从输入字符流写入输出字符流,然后由输出字符流写到目标文件
try {
if (!file_new.exists()){
file_new.createNewFile();
} FileInputStream fileInputStream = new FileInputStream(file_old);
FileOutputStream fileOutputStream = new FileOutputStream(file_new); //创建缓存字节数组
byte data[] = new byte[1024];
// 一次性读入1024个字节,即读入到字节数组中,然后再将数组写入输出流
while ((fileInputStream.read(data))!=-1){
fileOutputStream.write(data);
fileOutputStream.flush();
} // 依次 关闭流(先开后关,后开先关)
fileOutputStream.close();
fileInputStream.close();
} catch (IOException e) {
e.printStackTrace();
} }
}
java IO实例的更多相关文章
- java IO 实例分析
初学java,一直搞不懂java里面的io关系,在网上找了很多大多都是给个结构图草草描述也看的不是很懂.而且没有结合到java7 的最新技术,所以自己来整理一下,有错的话请指正,也希望大家提出宝贵意见 ...
- JAVA IO分析三:IO总结&文件分割与合并实例
时间飞逝,马上就要到2018年了,今天我们将要学习的是IO流学习的最后一节,即总结回顾前面所学,并学习一个案例用于前面所学的实际操作,下面我们就开始本节的学习: 一.原理与概念 一.概念流:流动 .流 ...
- java IO操作:FileInputStream,FileOutputStream,FileReader,FileWriter实例
FileInputStream <span style="font-family:Verdana;">import java.io.File; import java. ...
- java IO流文件的读写具体实例(转载)
引言: 关于java IO流的操作是非常常见的,基本上每个项目都会用到,每次遇到都是去网上找一找就行了,屡试不爽.上次突然一个同事问了我java文件的读取,我一下子就懵了第一反应就是去网上找,虽然也能 ...
- Java.io.ObjectOutputStream.writeObject()方法实例
java.io.ObjectOutputStream.writeObject(Object obj) 方法将指定对象写入ObjectOutputStream.该对象的类,类的签名,以及类及其所有超类型 ...
- Java:IO流与文件基础
Java:IO流与文件基础 说明: 本章内容将会持续更新,大家可以关注一下并给我提供建议,谢谢啦. 走进流 什么是流 流:从源到目的地的字节的有序序列. 在Java中,可以从其中读取一个字节序列的对象 ...
- java IO流详解
流的概念和作用 学习Java IO,不得不提到的就是JavaIO流. 流是一组有顺序的,有起点和终点的字节集合,是对数据传输的总称或抽象.即数据在两设备间的传输称为流,流的本质是数据传输,根据数据传输 ...
- Java IO流学习总结
Java流操作有关的类或接口: Java流类图结构: 流的概念和作用 流是一组有顺序的,有起点和终点的字节集合,是对数据传输的总称或抽象.即数据在两设备间的传输称为流,流的本质是数据传输,根据数据传输 ...
- java.io.Serializable 序列化接口
什么是序列化.反序列化? Serialization(序列化)是一种将对象以一连串的字节描述的过程: 反序列化deserialization是一种将这些字节重建成一个对象的过程. 序列化通俗一点说就是 ...
随机推荐
- vue面试
1.一个比较全的vue面试题 http://www.bslxx.com/p/3187.html
- PHP curl是什么
PHP curl是什么 一.总结 一句话总结:PHP支持的由Daniel Stenberg创建的libcurl库允许你与各种的服务器使用各种类型的协议进行连接和通讯. libcurl库 允许你与各种的 ...
- <%@page contentType="text/html;charset=gbk"%> 与 <meta http-equiv="Content-Type" content="text/html; charset=GBK">区别
前一个是在服务端起作用,是告诉应用服务器采用何种编码输出JSP文件流, 后一个是在客户端起作用,是告诉浏览器是采用何种编码方式显示HTML页面
- 测试环境的好工具bginfo
省的自己来回找这台机器的IP,剩余空间了. 直接都显示在桌面了. https://www.howtogeek.com/school/sysinternals-pro/lesson7/
- 中文情况下,Eclipse的最好字体。
个人喜欢的是 Microsoft YaHei Mono 了. 下面的文章喜欢的是 YaHei Consolas Hybrid. 字体安装方法的话,拷贝到 widnows\fonts目录就行. http ...
- java maven项目 pom.xml plugin 报错, build path 找不到 jconsole-1.8.0.jar 和 tools-1.8.0.jar 包
maven项目pom.xml突然报错,在Java Build Path 中并没有引用的jar包出现在了Maven Dependencies的依赖包中. 这个错误直接导致了pom.xml文件中 < ...
- Genome-wide gene-environment analyses of depression and reported lifetime traumatic experiences in UK Biobank
Genome-wide gene-environment analyses of depression and reported lifetime traumatic experiences in U ...
- LeetCode--389--找不同
问题描述: 给定两个字符串 s 和 t,它们只包含小写字母. 字符串 t 由字符串 s 随机重排,然后在随机位置添加一个字母. 请找出在 t 中被添加的字母. 示例: 输入: s = "ab ...
- 20180518VSTO多簿单表汇总外接程序按钮
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Microsof ...
- ubuntu opencv
sudo apt-get updatesudo apt-get upgrade sudo apt-get install build-essential libgtk2.0-dev libjpeg-d ...