方法名 |
说明 |
BufferedOutputStream(OutputStream out) |
创建字节缓冲输出流对象 |
BufferedInputStream(InputStream in) |
创建字节缓冲输入流对象 |
示例代码
public class BufferStreamDemo {
public static void main(String[] args) throws IOException {
//字节缓冲输出流:BufferedOutputStream(OutputStream out)
// FileOutputStream fos = new FileOutputStream("demo_bs\\bos.txt");
// BufferedOutputStream bos = new BufferedOutputStream(fos);
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("demo_bs\\bos.txt"));
//写数据
bos.write("hello\r\n".getBytes());
bos.write("world\r\n".getBytes());
//释放资源
bos.close();
//字节缓冲输入流:BufferedInputStream(InputStream in)
BufferedInputStream bis = new BufferedInputStream(new FileInputStream("demo_bs\\bos.txt"));
//一次读取一个字节数据
// int by;
// while ((by=bis.read())!=-1) {
// System.out.print((char)by);
// }
//一次读取一个字节数组数据
byte[] bys = new byte[1024];
int len;
while ((len=bis.read(bys))!=-1) {
System.out.print(new String(bys,0,len));
}
//释放资源
bis.close();
}
}
/*
四种方式实现复制视频,并记录每种方式复制视频的时间
1:基本字节流一次读写一个字节 共耗时:64565毫秒
2:基本字节流一次读写一个字节数组 共耗时:107毫秒
3:字节缓冲流一次读写一个字节 共耗时:405毫秒
4:字节缓冲流一次读写一个字节数组 共耗时:60毫秒
*/
public class CopyAviDemo {
public static void main(String[] args) throws IOException {
//记录开始时间
long startTime = System.currentTimeMillis();
//复制视频
// method1();
// method2();
// method3();
method4();
//记录结束时间
long endTime = System.currentTimeMillis();
System.out.println("共耗时:" + (endTime - startTime) + "毫秒");
}
//字节缓冲流一次读写一个字节数组
public static void method4() throws IOException {
BufferedInputStream bis = new BufferedInputStream(new FileInputStream("E:\\demo\\vedio.avi"));
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("demo_bs\\copy.avi"));
byte[] bys = new byte[1024];
int len;
while ((len=bis.read(bys))!=-1) {
bos.write(bys,0,len);
}
bos.close();
bis.close();
}
//字节缓冲流一次读写一个字节
public static void method3() throws IOException {
BufferedInputStream bis = new BufferedInputStream(new FileInputStream("E:\\demo\\vedio.avi"));
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("demo_bs\\copy.avi"));
// int by;
// while ((by=bis.read())!=-1) {
// bos.write(by);
// }
int by;
while((by=bis.read())!=-1){
bos.write(by);
}
bos.close();
bis.close();
}
//基本字节流一次读写一个字节数组
public static void method2() throws IOException {
FileInputStream fis = new FileInputStream("E:\\demo\\vedio.avi");
FileOutputStream fos = new FileOutputStream("demo_bs\\copy.avi");
byte[] bys = new byte[1024];
int len;
while ((len=fis.read(bys))!=-1) {
fos.write(bys,0,len);
}
fos.close();
fis.close();
}
//基本字节流一次读写一个字节
public static void method1() throws IOException {
FileInputStream fis = new FileInputStream("E:\\demo\\vedio.avi");
FileOutputStream fos = new FileOutputStream("demo_bs\\copy.avi");
int by;
while ((by=fis.read())!=-1) {
fos.write(by);
}
fos.close();
fis.close();
}
}
相关方法
方法名 |
说明 |
byte[] getBytes() |
使用平台的默认字符集将该 String编码为一系列字节 |
byte[] getBytes(String charsetName) |
使用指定的字符集将该 String编码为一系列字节 |
String(byte[] bytes) |
使用平台的默认字符集解码指定的字节数组来创建字符串 |
String(byte[] bytes, String charsetName) |
通过指定的字符集解码指定的字节数组来创建字符串 |
代码演示
public class StringDemo {
public static void main(String[] args) throws UnsupportedEncodingException {
//定义一个字符串
String s = "中国";
//byte[] bys = s.getBytes(); //[-28, -72, -83, -27, -101, -67]
// byte[] bys = s.getBytes("UTF-8"); //[-28, -72, -83, -27, -101, -67]
byte[] bys = s.getBytes("GBK"); //[-42, -48, -71, -6]
System.out.println(Arrays.toString(bys));
// String ss = new String(bys);
// String ss = new String(bys,"UTF-8");
String ss = new String(bys,"GBK");
System.out.println(ss);
}
}
方法名 |
说明 |
InputStreamReader(InputStream in) |
使用默认字符编码创建InputStreamReader对象 |
InputStreamReader(InputStream in,String chatset) |
使用指定的字符编码创 InputStreamReader 对象 |
OutputStreamWriter(OutputStream out) |
使用默认字符编码创建OutputStreamWriter对象 |
OutputStreamWriter(OutputStream out,String charset) |
使用指定字符编码创建OutputStreamWriter 对象 |
代码演示
public class ConversionStreamDemo {
public static void main(String[] args) throws IOException {
//OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream("myCharStream\\osw.txt"));
OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream("demo_bs\\osw.txt"),"GBK");
osw.write("中国");
osw.close();
//InputStreamReader isr = new InputStreamReader(new FileInputStream("myCharStream\\osw.txt"));
InputStreamReader isr = new InputStreamReader(new FileInputStream("demo_bs\\osw.txt"),"GBK");
//一次读取一个字符数据
int ch;
while ((ch=isr.read())!=-1) {
System.out.print((char)ch);
}
isr.close();
}
}
方法介绍
方法名 |
说明 |
void write(int c) |
写一个字符 |
void write(char[] cbuf) |
写入一个字符数组 |
void write(char[] cbuf, int off, int len) |
写入字符数组的一部分 |
void write(String str) |
写一个字符串 |
void write(String str, int off, int len) |
写一个字符串的一部分 |
刷新和关闭的方法
方法名 |
说明 |
flush() |
刷新流,之后还可以继续写数据 |
close() |
关闭流,释放资源,但是在关闭之前会先刷新流。一旦关闭,就不能再写数据 |
代码演示
public class OutputStreamWriterDemo {
public static void main(String[] args) throws IOException {
OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream("myCharStream\\osw.txt"));
//void write(int c):写一个字符
// osw.write(97);
// osw.write(98);
// osw.write(99);
// osw.flush();
//void write(char[] cbuf):写入一个字符数组
char[] chs = {'a', 'b', 'c', 'd', 'e'};
// osw.write(chs);
//void write(char[] cbuf, int off, int len):写入字符数组的一部分
// osw.write(chs, 0, chs.length);
// osw.write(chs, 1, 3);
//void write(String str):写一个字符串
// osw.write("abcde");
//void write(String str, int off, int len):写一个字符串的一部分
// osw.write("abcde", 0, "abcde".length());
osw.write("abcde", 1, 3);
//释放资源
osw.close();
}
}
方法介绍
方法名 |
说明 |
int read() |
一次读一个字符数据 |
int read(char[] cbuf) |
一次读一个字符数组数据 |
代码演示
public class InputStreamReaderDemo {
public static void main(String[] args) throws IOException {
// InputStreamReader isr = new InputStreamReader(new FileInputStream("myCharStream\\osw.txt"));
InputStreamReader isr = new InputStreamReader(new FileInputStream("demo_bs\\src\\com\\javase\\myCharStream\\demo2\\ConversionStreamDemo.java"));
//int read():一次读一个字符数据
// int ch;
// while ((ch=isr.read())!=-1) {
// System.out.print((char)ch);
// }
//int read(char[] cbuf):一次读一个字符数组数据
char[] chs = new char[1024];
int len;
while ((len = isr.read(chs)) != -1) {
System.out.print(new String(chs, 0, len));
}
//释放资源
isr.close();
}
}
代码实现
public class CopyJavaDemo01 {
public static void main(String[] args) throws IOException {
//根据数据源创建字符输入流对象
InputStreamReader isr = new InputStreamReader(new FileInputStream("demo_bs\\src\\com\\javase\\myCharStream\\demo2\\ConversionStreamDemo.java"));
OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream("demo_bs\\src\\com\\javase\\myCharStream\\demo3\\copy.java"));
// 读写数据,复制文件
//一次读写一个字符数据
// int ch;
// while((ch=isr.read())!=-1){
// osw.write(ch);
// }
// 一次读写一个字符数组数据
char[] chars = new char[1024];
int len;
while((len=isr.read(chars))!=-1){
osw.write(chars,0,len);
}
//释放资源
osw.close();
isr.close();
}
}
构造方法
方法名 |
说明 |
BufferedWriter(Writer out) |
创建字符缓冲输出流对象 |
BufferedReader(Reader in) |
创建字符缓冲输入流对象 |
代码演示
public class BufferedStreamDemo1 {
public static void main(String[] args) throws IOException {
// BufferedWriter(Writer out)
FileWriter fw = new FileWriter("demo_bs\\bw.txt");
BufferedWriter bw = new BufferedWriter(fw);
bw.write("hello\r\n");
bw.write("world\r\n");
bw.close();
// BufferedReader(Reader in)
BufferedReader br = new BufferedReader(new FileReader("demo_bs\\bw.txt"));
//一次读取一个字符数据
// int ch;
// while ((ch=br.read())!=-1) {
// System.out.print((char)ch);
// }
//一次读取一个字符数组数据
char[] chs = new char[1024];
int len;
while ((len=br.read(chs))!=-1) {
System.out.print(new String(chs,0,len));
}
br.close();
}
}
方法介绍
BufferedWriter:
方法名 |
说明 |
void newLine() |
写一行行分隔符,行分隔符字符串由系统属性定义 |
BufferedReader:
方法名 |
说明 |
String readLine() |
读一行文字。 结果包含行的内容的字符串,不包括任何行终止字符如果流的结尾已经 到达,则为null |
代码演示
public class BufferedStreamDemo2 {
public static void main(String[] args) throws IOException {
//创建字符缓冲输出流
BufferedWriter bw =new BufferedWriter(new FileWriter("demo_bs\\bw.txt"));
//写数据
for (int i=0;i<10;i++){
bw.write("hello"+i);
// bw.write("\r\n");
bw.newLine();
bw.flush();
}
//释放资源
bw.close();
//创建字符缓冲输入流
BufferedReader br = new BufferedReader(new FileReader("demo_bs\\bw.txt"));
//public String readLine():读一行文字。
String line;
while ((line=br.readLine())!=null) {
System.out.println(line);
}
br.close();
}
}
public class CopyJavaDemo02 {
public static void main(String[] args) throws IOException {
//根据数据源创建字符缓冲输入流对象
BufferedReader br = new BufferedReader(new FileReader("myCharStream\\ConversionStreamDemo.java"));
//根据目的地创建字符缓冲输出流对象
BufferedWriter bw = new BufferedWriter(new FileWriter("myCharStream\\Copy.java"));
//读写数据,复制文件
//使用字符缓冲流特有功能实现
String line;
while ((line=br.readLine())!=null) {
bw.write(line);
bw.newLine();
bw.flush();
}
//释放资源
bw.close();
br.close();
}
}