传智播客 2015年 刘意_Java基础视频-深入浅出精华版 笔记(day21~)(2016年3月26日01:10:44)

day21

1.编码表概述和常见编码表

计算机只能识别二进制数据,早期由来是电信号。

为了方便应用计算机,让它可以识别各个国家的文字。

就将各个国家的文字用数字来表示,并一一对应,形成一张表。

ASCII:美国标准信息交换码。

用一个字节的7位可以表示。

ISO8859-1:拉丁码表。欧洲码表

用一个字节的8位表示。

GB2312:中国的中文编码表。

GBK:中国的中文编码表升级,融合了更多的中文文字符号。

GB18030:GBK的取代版本

BIG-5码 :通行于台湾、香港地区的一个繁体字编码方案,俗称“大五码”。

Unicode:国际标准码,融合了多种文字。

所有文字都用两个字节来表示,Java语言使用的就是unicode

UTF-8:最多用三个字节来表示一个字符。

UTF-8不同,它定义了一种“区间规则”,这种规则可以和ASCII编码保持最大程度的兼容:

它将Unicode编码为00000000-0000007F的字符,用单个字节来表示

它将Unicode编码为00000080-000007FF的字符用两个字节表示

它将Unicode编码为00000800-0000FFFF的字符用3字节表示

2.String类中的编码和解码问题

String(byte[] bytes, String charsetName):通过指定的字符集解码字节数组

byte[] getBytes(String charsetName):使用指定的字符集合把字符串编码为字节数组

编码:把看得懂的变成看不懂的

* String -- byte[]

*

* 解码:把看不懂的变成看得懂的

* byte[] -- String

*

* 举例:谍战片(发电报,接电报)

*

* 码表:小本子

*         字符    数值

*

* 要发送一段文字:

*         今天晚上在老地方见

*

*         发送端:今 -- 数值 -- 二进制 -- 发出去

*         接收端:接收 -- 二进制 -- 十进制 -- 数值 -- 字符 -- 今

*

*         今天晚上在老地方见

*

* 编码问题简单,只要编码解码的格式是一致的。

public static void main(String[] args) throws UnsupportedEncodingException {

String s = "你好";

// String -- byte[]

byte[] bys = s.getBytes(); // [-60, -29, -70, -61]

// byte[] bys = s.getBytes("GBK");// [-60, -29, -70, -61]//证明默认是GBK编码

// byte[] bys = s.getBytes("UTF-8");// [-28, -67, -96, -27, -91, -67]

System.out.println(Arrays.toString(bys));

// byte[] -- String

String ss = new String(bys); // 你好

// String ss = new String(bys, "GBK"); // 你好

// String ss = new String(bys, "UTF-8"); // ???

System.out.println(ss);

}

=======================================

utf-8三个字节为一组,GBK两个字节为一组,如果解码编码不一致会有分组上的问题

3.转换流OutputStreamWriter的使用

转换的意思就是利用编码进行数据转换

OutputStreamWriter(OutputStream out):根据默认编码把字节流的数据转换为字符流

OutputStreamWriter(OutputStream out,String charsetName):根据指定编码把字节流数据转换为字符流

把字节流转换为字符流。

字符流 = 字节流 +编码表。

==================分割线===================

public static void main(String[] args) throws IOException {

// 创建对象

// OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream(

// "osw.txt")); // 默认GBK

// OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream(

// "osw.txt"), "GBK"); // 指定GBK

OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream(

"osw.txt"), "UTF-8"); // 指定UTF-8

// 写数据,这个方法可以直接写字符串,实在太方便了!!

osw.write("中国");

// 释放资源

osw.close();

}

4.转换流InputStreamReader的使用

InputStreamReader(InputStream is):用默认的编码读取数据

InputStreamReader(InputStream is,String charsetName):用指定的编码读取数据

public static void main(String[] args) throws IOException {

// 创建对象

// InputStreamReader isr = new InputStreamReader(new FileInputStream(

// "osw.txt"));

InputStreamReader isr = new InputStreamReader(new FileInputStream(

"osw.txt"), "UTF-8");

// 读取数据

// 一次读取一个字符//注意,这是字符流!!!不再是一次读一个字节!!!应该是一次读一个字符

int ch = 0;

while ((ch = isr.read()) != -1) {

System.out.print((char) ch);

}

// 释放资源

isr.close();

}

5.字符流的5种写数据的方式

首先一个要注意的问题,flush问题

===============================

// 创建对象

OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream(

"osw2.txt"));

// 写数据

// public void write(int c):写一个字符

// osw.write(‘a‘);

// osw.write(97);

// 为什么数据没有进去呢?(在没写close之前数据没办法显示在txt文件中)

// 原因是:字符 = 2字节

// 文件中数据存储的基本单位是字节。(一个一个字节,停留在缓冲)

//但是,如果没有flush,但有close的话,字符还是可以正常输出的

// void flush()

// 刷新缓冲区

osw.flush();

===============================

close()方法强制刷新(完成了先刷新后关闭的功能)

OutputStreamWriter的方法:

* public void write(int c):写一个字符(可以传‘a‘,也可以传97)

* public void write(char[] cbuf):写一个字符数组

* public void write(char[] cbuf,int off,int len):写一个字符数组的一部分

* public void write(String str):写一个字符串

* public void write(String str,int off,int len):写一个字符串的一部分

面试题:close()和flush()的区别?

* A:close()关闭流对象,但是先刷新一次缓冲区。关闭之后,流对象不可以继续再使用了。

* B:flush()仅仅刷新缓冲区,刷新之后,流对象还可以继续使用。(用于数据量大时刷新)

6.字符流的2种读数据的方式

InputStreamReader的方法:

int read():一次读取一个字符

int read(char[] chs):一次读取一个字符数组

public static void main(String[] args) throws IOException {

// 创建对象

InputStreamReader isr = new InputStreamReader(new FileInputStream(

"StringDemo.java"));

// 一次读取一个字符

// int ch = 0;

// while ((ch = isr.read()) != -1) {

// System.out.print((char) ch);

// }

// 一次读取一个字符数组

char[] chs = new char[1024];

int len = 0;

while ((len = isr.read(chs)) != -1) {

System.out.print(new String(chs, 0, len));

}

// 释放资源

isr.close();

}

7.字符流复制文本文件案例1----copyfile

需求:把当前项目目录下的a.txt内容复制到当前项目目录下的b.txt中

数据源:

a.txt -- 读取数据 -- 字符转换流 -- InputStreamReader

目的地:

b.txt -- 写出数据 -- 字符转换流 -- OutputStreamWriter

==========================================

public static void main(String[] args) throws IOException {

// 封装数据源

InputStreamReader isr = new InputStreamReader(new FileInputStream(

"a.txt"));

// 封装目的地

OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream(

"b.txt"));

// 读写数据

// 方式1

// int ch = 0;

// while ((ch = isr.read()) != -1) {

// osw.write(ch);

// }

// 方式2

char[] chs = new char[1024];

int len = 0;

while ((len = isr.read(chs)) != -1) {

osw.write(chs, 0, len);//注意这里

// osw.flush();//可选动作

}

// 释放资源

osw.close();

isr.close();

}

=============================================

8.转换流的简化写法

解析:InputStreamReader,OutputStreamWriter 充当桥梁的作用(连接字节流和字符流)

而有时候写起来很麻烦,因此借用一个便捷子类来简化书写

InputStreamReader isr = new InputStreamReader(new FileInputStream(

"a.txt"));

等价于 FileReader fr = new FileReader("a.txt");

OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream(

"b.txt"));

等价于 FileWriter fw = new FileWriter("b.txt");

代码被简化

====================================================

需求:把当前项目目录下的a.txt内容复制到当前项目目录下的b.txt中

数据源:

a.txt -- 读取数据 -- 字符转换流 -- InputStreamReader -- FileReader

目的地:

b.txt -- 写出数据 -- 字符转换流 -- OutputStreamWriter -- FileWriter

public static void main(String[] args) throws IOException {

// 封装数据源

FileReader fr = new FileReader("a.txt");

// 封装目的地

FileWriter fw = new FileWriter("b.txt");

// 一次一个字符

// int ch = 0;

// while ((ch = fr.read()) != -1) {

// fw.write(ch);

// }

// 一次一个字符数组

char[] chs = new char[1024];

int len = 0;

while ((len = fr.read(chs)) != -1) {

fw.write(chs, 0, len);

fw.flush();

}

// 释放资源

fw.close();

fr.close();

}

==================================================

9.字符缓冲输出流BufferedWriter的使用

字符流为了高效读写,也提供了对应的字符缓冲流。

BufferedWriter:字符缓冲输出流

BufferedReader:字符缓冲输入流

BufferedWriter:字符缓冲输出流

将文本写入字符输出流,缓冲各个字符,从而提供单个字符、数组和字符串的高效写入。

可以指定缓冲区的大小,或者接受默认的大小。在大多数情况下,默认值就足够大了。

public static void main(String[] args) throws IOException {

// BufferedWriter(Writer out)

// BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(

// new FileOutputStream("bw.txt")));//原始写法,带转换流

BufferedWriter bw = new BufferedWriter(new FileWriter("bw.txt"));

bw.write("hello");

bw.write("world");

bw.write("java");

bw.flush();

bw.close();

}

10.字符缓冲输入流BufferedReader的使用

BufferedReader

从字符输入流中读取文本,缓冲各个字符,从而实现字符、数组和行的高效读取。

可以指定缓冲区的大小,或者可使用默认的大小。大多数情况下,默认值就足够大了。

BufferedReader(Reader in)

public static void main(String[] args) throws IOException {

// 创建字符缓冲输入流对象

BufferedReader br = new BufferedReader(new FileReader("bw.txt"));

// 方式1

// int ch = 0;

// while ((ch = br.read()) != -1) {

// System.out.print((char) ch);

// }

// 方式2

char[] chs = new char[1024];

int len = 0;

while ((len = br.read(chs)) != -1) {

System.out.print(new String(chs, 0, len));

}

// 释放资源

br.close();

}

11.字符缓冲流复制文本文件案例1

需求:把当前项目目录下的a.txt内容复制到当前项目目录下的b.txt中

数据源:

a.txt -- 读取数据 -- 字符转换流 -- InputStreamReader -- FileReader -- BufferedReader

目的地:

b.txt -- 写出数据 -- 字符转换流 -- OutputStreamWriter -- FileWriter -- BufferedWriter

public static void main(String[] args) throws IOException {

// 封装数据源

BufferedReader br = new BufferedReader(new FileReader("a.txt"));

// 封装目的地

BufferedWriter bw = new BufferedWriter(new FileWriter("b.txt"));

// 两种方式其中的一种一次读写一个字符数组

char[] chs = new char[1024];

int len = 0;

while ((len = br.read(chs)) != -1) {

bw.write(chs, 0, len);

bw.flush();

}

// 释放资源

bw.close();

br.close();

}

12.字符缓冲流的特殊功能---换行问题

字符缓冲流的特殊方法:

BufferedWriter:

public void newLine():根据系统来决定换行符

BufferedReader:

public String readLine():一次读取一行数据

包含该行内容的字符串,不包含任何行终止符,如果已到达流末尾,则返回 null

/ public String readLine():一次读取一行数据

// String line = br.readLine();

// System.out.println(line);//必须手动加换行ln才可以换行,读数据的时候可以识别换行符但并不会添加换行符

// line = br.readLine();

// System.out.println(line);//必须手动加换行ln才可以换行,读数据的时候可以识别换行符但并不会添加换行符

文件本身的内容(也就是说,文件本身有换行符)

public static void main(String[] args) throws IOException {

// write();

read();

}

private static void read() throws IOException {

// 创建字符缓冲输入流对象

BufferedReader br = new BufferedReader(new FileReader("bw2.txt"));

// public String readLine():一次读取一行数据

// String line = br.readLine();

// System.out.println(line);

// line = br.readLine();

// System.out.println(line);

// 最终版代码

String line = null;

while ((line = br.readLine()) != null) {

System.out.println(line);

}

//释放资源

br.close();

}

private static void write() throws IOException {

// 创建字符缓冲输出流对象

BufferedWriter bw = new BufferedWriter(new FileWriter("bw2.txt"));

for (int x = 0; x < 10; x++) {

bw.write("hello" + x);

// bw.write("\r\n");

bw.newLine();

bw.flush();

}

bw.close();

}

输出示例

13.字符缓冲流复制文本文件案例2

需求:把当前项目目录下的a.txt内容复制到当前项目目录下的b.txt中

public static void main(String[] args) throws IOException {

// 封装数据源

BufferedReader br = new BufferedReader(new FileReader("a.txt"));

// 封装目的地

BufferedWriter bw = new BufferedWriter(new FileWriter("b.txt"));

// 读写数据

String line = null;

while ((line = br.readLine()) != null) {

bw.write(line);

bw.newLine();//一定要记得换行

bw.flush();

}

// 释放资源

bw.close();

br.close();

}

================================================

14.IO流小结图解

15.复制文本文件的5种方式案例

复制文本文件

分析:

复制数据,如果我们知道用记事本打开并能够读懂,就用字符流,否则用字节流。

通过该原理,我们知道我们应该采用字符流更方便一些。

而字符流有5种方式,所以做这个题目我们有5种方式。推荐掌握第5种。

数据源:

c:\\a.txt -- FileReader -- BufferdReader

目的地:

d:\\b.txt -- FileWriter -- BufferedWriter

=======================================

public static void main(String[] args) throws IOException {

String srcString = "c:\\a.txt";

String destString = "d:\\b.txt";

// method1(srcString, destString);

// method2(srcString, destString);

// method3(srcString, destString);

// method4(srcString, destString);

method5(srcString, destString);

}

// 字符缓冲流一次读写一个字符串

private static void method5(String srcString, String destString)

throws IOException {

BufferedReader br = new BufferedReader(new FileReader(srcString));

BufferedWriter bw = new BufferedWriter(new FileWriter(destString));

String line = null;

while ((line = br.readLine()) != null) {

bw.write(line);

bw.newLine();

bw.flush();

}

bw.close();

br.close();

}

// 字符缓冲流一次读写一个字符数组

private static void method4(String srcString, String destString)

throws IOException {

BufferedReader br = new BufferedReader(new FileReader(srcString));

BufferedWriter bw = new BufferedWriter(new FileWriter(destString));

char[] chs = new char[1024];

int len = 0;

while ((len = br.read(chs)) != -1) {

bw.write(chs, 0, len);

}

bw.close();

br.close();

}

// 字符缓冲流一次读写一个字符

private static void method3(String srcString, String destString)

throws IOException {

BufferedReader br = new BufferedReader(new FileReader(srcString));

BufferedWriter bw = new BufferedWriter(new FileWriter(destString));

int ch = 0;

while ((ch = br.read()) != -1) {

bw.write(ch);

}

bw.close();

br.close();

}

// 基本字符流一次读写一个字符数组

private static void method2(String srcString, String destString)

throws IOException {

FileReader fr = new FileReader(srcString);

FileWriter fw = new FileWriter(destString);

char[] chs = new char[1024];

int len = 0;

while ((len = fr.read(chs)) != -1) {

fw.write(chs, 0, len);

}

fw.close();

fr.close();

}

// 基本字符流一次读写一个字符

private static void method1(String srcString, String destString)

throws IOException {

FileReader fr = new FileReader(srcString);

FileWriter fw = new FileWriter(destString);

int ch = 0;

while ((ch = fr.read()) != -1) {

fw.write(ch);

}

fw.close();

fr.close();

}

16.复制图片的4种方式案例

复制图片

分析:

复制数据,如果我们知道用记事本打开并能够读懂,就用字符流,否则用字节流。

通过该原理,我们知道我们应该采用字节流。

而字节流有4种方式,所以做这个题目我们有4种方式。推荐掌握第4种。

数据源:

c:\\a.jpg -- FileInputStream -- BufferedInputStream

目的地:

d:\\b.jpg -- FileOutputStream -- BufferedOutputStream

==========================================

public static void main(String[] args) throws IOException {

// 使用字符串作为路径

// String srcString = "c:\\a.jpg";

// String destString = "d:\\b.jpg";

// 使用File对象做为参数

File srcFile = new File("c:\\a.jpg");

File destFile = new File("d:\\b.jpg");

// method1(srcFile, destFile);

// method2(srcFile, destFile);

// method3(srcFile, destFile);

method4(srcFile, destFile);

}

// 字节缓冲流一次读写一个字节数组

private static void method4(File srcFile, File destFile) throws IOException {

BufferedInputStream bis = new BufferedInputStream(new FileInputStream(

srcFile));

BufferedOutputStream bos = new BufferedOutputStream(

new FileOutputStream(destFile));

byte[] bys = new byte[1024];

int len = 0;

while ((len = bis.read(bys)) != -1) {

bos.write(bys, 0, len);

}

bos.close();

bis.close();

}

// 字节缓冲流一次读写一个字节

private static void method3(File srcFile, File destFile) throws IOException {

BufferedInputStream bis = new BufferedInputStream(new FileInputStream(

srcFile));

BufferedOutputStream bos = new BufferedOutputStream(

new FileOutputStream(destFile));

int by = 0;

while ((by = bis.read()) != -1) {

bos.write(by);

}

bos.close();

bis.close();

}

// 基本字节流一次读写一个字节数组

private static void method2(File srcFile, File destFile) throws IOException {

FileInputStream fis = new FileInputStream(srcFile);

FileOutputStream fos = new FileOutputStream(destFile);

byte[] bys = new byte[1024];

int len = 0;

while ((len = fis.read(bys)) != -1) {

fos.write(bys, 0, len);

}

fos.close();

fis.close();

}

// 基本字节流一次读写一个字节

private static void method1(File srcFile, File destFile) throws IOException {

FileInputStream fis = new FileInputStream(srcFile);

FileOutputStream fos = new FileOutputStream(destFile);

int by = 0;

while ((by = fis.read()) != -1) {

fos.write(by);

}

fos.close();

fis.close();

}

==============================================

17.把集合中的数据存储到文本文件案例 ArrayListToFile

需求:把ArrayList集合中的字符串数据存储到文本文件

分析:

通过题目的意思我们可以知道如下的一些内容,

ArrayList集合里存储的是字符串。

遍历ArrayList集合,把数据获取到。

然后存储到文本文件中。

文本文件说明使用字符流。

数据源:

ArrayList<String> -- 遍历得到每一个字符串数据

目的地:

a.txt -- FileWriter -- BufferedWriter

=================================================

public static void main(String[] args) throws IOException {

// 封装数据与(创建集合对象)

ArrayList<String> array = new ArrayList<String>();

array.add("hello");

array.add("world");

array.add("java");

// 封装目的地

BufferedWriter bw = new BufferedWriter(new FileWriter("a.txt"));

// 遍历集合

for (String s : array) {

// 写数据

bw.write(s);

bw.newLine();

bw.flush();

}

// 释放资源

bw.close();

}

======================================

18.把文本文件中的数据存储到集合中案例  FileToArrayList

需求:从文本文件中读取数据(每一行为一个字符串数据)到集合中,并遍历集合

*

* 分析:

*         通过题目的意思我们可以知道如下的一些内容,

*             数据源是一个文本文件。

*             目的地是一个集合。

*             而且元素是字符串。

*

* 数据源:

*         b.txt -- FileReader -- BufferedReader

* 目的地:

*         ArrayList<String>

======================================

public static void main(String[] args) throws IOException {

// 封装数据源

BufferedReader br = new BufferedReader(new FileReader("b.txt"));

// 封装目的地(创建集合对象)

ArrayList<String> array = new ArrayList<String>();

// 读取数据存储到集合中

String line = null;

while ((line = br.readLine()) != null) {

array.add(line);

}

// 释放资源

br.close();//别忘记这一步

// 遍历集合

for (String s : array) {

System.out.println(s);

}

}

===========================================

19.随机获取文本文件中的姓名案例

需求:我有一个文本文件中存储了几个名称,请大家写一个程序实现随机获取一个人的名字。

分析:

A:把文本文件中的数据存储到集合中

B:随机产生一个索引

C:根据该索引获取一个值

public static void main(String[] args) throws IOException {

// 把文本文件中的数据存储到集合中

BufferedReader br = new BufferedReader(new FileReader("b.txt"));

ArrayList<String> array = new ArrayList<String>();

String line = null;

while ((line = br.readLine()) != null) {

array.add(line);

}

br.close();

// 随机产生一个索引

Random r = new Random();

int index = r.nextInt(array.size());

// 根据该索引获取一个值

String name = array.get(index);

System.out.println("该幸运者是:" + name);

}

==========================================

20.复制单级文件夹案例

/*

* 需求:复制单极文件夹

*

* 数据源:e:\\demo

* 目的地:e:\\test

*

* 分析:

*         A:封装目录

*         B:获取该目录下的所有文本的File数组

*         C:遍历该File数组,得到每一个File对象

*         D:把该File进行复制

*/

public class CopyFolderDemo {

public static void main(String[] args) throws IOException {

// 封装目录

File srcFolder = new File("e:\\demo");

// 封装目的地

File destFolder = new File("e:\\test");

// 如果目的地文件夹不存在,就创建(一定要注意这个问题)

if (!destFolder.exists()) {

destFolder.mkdir();

}

// 获取该目录下的所有文本的File数组

File[] fileArray = srcFolder.listFiles();

// 遍历该File数组,得到每一个File对象

for (File file : fileArray) {

// System.out.println(file);

// 数据源:e:\\demo\\e.mp3

// 目的地:e:\\test\\e.mp3

String name = file.getName(); // e.mp3

File newFile = new File(destFolder, name); // e:\\test\\e.mp3

copyFile(file, newFile);

}

}

private static void copyFile(File file, File newFile) throws IOException {

BufferedInputStream bis = new BufferedInputStream(new FileInputStream(

file));

BufferedOutputStream bos = new BufferedOutputStream(

new FileOutputStream(newFile));

byte[] bys = new byte[1024];

int len = 0;

while ((len = bis.read(bys)) != -1) {

bos.write(bys, 0, len);

}

bos.close();

bis.close();

}

}

=====================================================

注意:文件不存在可以自动创建,但是文件夹不存在不会自动创建,因此

if (!destFolder.exists()) {

destFolder.mkdir();

}

21.复制指定目录下指定后缀名的文件并修改名称案例

数据源

/*

* 需求:复制指定目录下的指定文件,并修改后缀名。

* 指定的文件是:.java文件。

* 指定的后缀名是:.jad

* 指定的目录是:jad

*

* 数据源:e:\\java\\A.java

* 目的地:e:\\jad\\A.jad

*

* 分析:

*         A:封装目录

*         B:获取该目录下的java文件的File数组

*         C:遍历该File数组,得到每一个File对象

*         D:把该File进行复制

*         E:在目的地目录下改名

*/

public class CopyFolderDemo {

public static void main(String[] args) throws IOException {

// 封装目录

File srcFolder = new File("e:\\java");

// 封装目的地

File destFolder = new File("e:\\jad");

// 如果目的地目录不存在,就创建

if (!destFolder.exists()) {

destFolder.mkdir();

}

// 获取该目录下的java文件的File数组

File[] fileArray = srcFolder.listFiles(new FilenameFilter() {

@Override

public boolean accept(File dir, String name) {

return new File(dir, name).isFile() && name.endsWith(".java");

}

});

// 遍历该File数组,得到每一个File对象

for (File file : fileArray) {

// System.out.println(file);

// 数据源:e:\java\DataTypeDemo.java

// 目的地:e:\\jad\DataTypeDemo.java

String name = file.getName();

File newFile = new File(destFolder, name);

copyFile(file, newFile);

}

// 在目的地目录下改名

File[] destFileArray = destFolder.listFiles();

for (File destFile : destFileArray) {

// System.out.println(destFile);

// e:\jad\DataTypeDemo.java

// e:\\jad\\DataTypeDemo.jad

String name =destFile.getName(); //DataTypeDemo.java

String newName = name.replace(".java", ".jad");//DataTypeDemo.jad

File newFile = new File(destFolder,newName);

destFile.renameTo(newFile);

}

}

private static void copyFile(File file, File newFile) throws IOException {

BufferedInputStream bis = new BufferedInputStream(new FileInputStream(

file));

BufferedOutputStream bos = new BufferedOutputStream(

new FileOutputStream(newFile));

byte[] bys = new byte[1024];

int len = 0;

while ((len = bis.read(bys)) != -1) {

bos.write(bys, 0, len);

}

bos.close();

bis.close();

}

}

==================================

运行后示例

而本人先前自己模仿了一个,功能略微不一样

数据源

/*

* 需求:复制指定目录下的指定文件,并修改后缀名

* 这个文件是我本人做的,问题是:文件夹复制没处理好(copyDirectory方法略繁琐 )

*

* 数据源:g:\\java\\A.java

*  目的地:f:\\jad\\A.jad

*/

public class CopyFolderDemo2 {

public static void main(String[] args) throws IOException {

// 封装目录

File srcFolder = new File("g:\\java");

File desFolder = new File("f:\\jad");

if (!desFolder.exists()) {

desFolder.mkdir();

}

File[] files = srcFolder.listFiles();

for (File f : files) {

if (!f.isDirectory()) {

String name = f.getName();

File newFile = new File(desFolder, name);

copyFile(f, newFile);

modifyFile(desFolder);

} else {

String folderName = f.getName();

String desFolderName = desFolder.getName();

copyDirectory(desFolder, folderName);

}

}

}

private static void copyDirectory(File desFolder, String folderName) {

File newFolder = new File(desFolder, folderName);

newFolder.mkdirs();

}

private static void modifyFile(File desFolder) {

File[] files = desFolder.listFiles();

for (File f : files) {

if (!f.isDirectory()) {

String name = f.getName();

if (name.endsWith(".java")) {

int index = name.indexOf(".");

String fileNameString = name.substring(0, index);

String newNameString = fileNameString.concat(".jad");

File newFile = new File(desFolder, newNameString);

f.renameTo(newFile);

}

}

}

}

private static void copyFile(File f, File newFile) throws IOException {

BufferedInputStream bis = new BufferedInputStream(new FileInputStream(f));

BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(newFile));

byte[] bys = new byte[1024];

int len = 0;

while ((len = bis.read(bys)) != -1) {

bos.write(bys, 0, len);

}

bis.close();

bos.close();

}

}

运行示例

22.复制多级文件夹案例

/*

* 需求:复制多极文件夹

*

* 数据源:E:\JavaSE\day21\code\demos

* 目的地:E:\\

*

* 分析:

*         A:封装数据源File

*         B:封装目的地File

*         C:判断该File是文件夹还是文件

*             a:是文件夹

*                 就在目的地目录下创建该文件夹

*                 获取该File对象下的所有文件或者文件夹File对象

*                 遍历得到每一个File对象

*                 回到C

*             b:是文件

*                 就复制(字节流)

*/

public class CopyFoldersDemo {

public static void main(String[] args) throws IOException {

// 封装数据源File

File srcFile = new File("E:\\JavaSE\\day21\\code\\demos");

// 封装目的地File

File destFile = new File("E:\\");

// 复制文件夹的功能

copyFolder(srcFile, destFile);

}

private static void copyFolder(File srcFile, File destFile)

throws IOException {

// 判断该File是文件夹还是文件

if (srcFile.isDirectory()) {

// 文件夹

File newFolder = new File(destFile, srcFile.getName());

newFolder.mkdir();

// 获取该File对象下的所有文件或者文件夹File对象

File[] fileArray = srcFile.listFiles();

for (File file : fileArray) {

copyFolder(file, newFolder);

}

} else {

// 文件

File newFile = new File(destFile, srcFile.getName());

copyFile(srcFile, newFile);

}

}

private static void copyFile(File srcFile, File newFile) throws IOException {

BufferedInputStream bis = new BufferedInputStream(new FileInputStream(

srcFile));

BufferedOutputStream bos = new BufferedOutputStream(

new FileOutputStream(newFile));

byte[] bys = new byte[1024];

int len = 0;

while ((len = bis.read(bys)) != -1) {

bos.write(bys, 0, len);

}

bos.close();

bis.close();

}

}

23.键盘录入学生信息按照总分排序并写入文本文件案例

Student类如下

===================

public class Student {

// 姓名

private String name;

// 语文成绩

private int chinese;

// 数学成绩

private int math;

// 英语成绩

private int english;

public Student() {

super();

}

public Student(String name, int chinese, int math, int english) {

super();

this.name = name;

this.chinese = chinese;

this.math = math;

this.english = english;

}

public String getName() {

return name;

}

public void setName(String name) {

this.name = name;

}

public int getChinese() {

return chinese;

}

public void setChinese(int chinese) {

this.chinese = chinese;

}

public int getMath() {

return math;

}

public void setMath(int math) {

this.math = math;

}

public int getEnglish() {

return english;

}

public void setEnglish(int english) {

this.english = english;

}

public int getSum() {

return this.chinese + this.math + this.english;

}

}

==========================================

测试类

=====

public class StudentDemo {

public static void main(String[] args) throws IOException {

// 创建集合对象

TreeSet<Student> ts = new TreeSet<Student>(new Comparator<Student>() {

@Override

public int compare(Student s1, Student s2) {

int num = s2.getSum() - s1.getSum();

int num2 = num == 0 ? s1.getChinese() - s2.getChinese() : num;

int num3 = num2 == 0 ? s1.getMath() - s2.getMath() : num2;

int num4 = num3 == 0 ? s1.getEnglish() - s2.getEnglish() : num3;

int num5 = num4 == 0 ? s1.getName().compareTo(s2.getName())

: num4;

return num5;

}

});

// 键盘录入学生信息存储到集合

for (int x = 1; x <= 5; x++) {

Scanner sc = new Scanner(System.in);

System.out.println("请录入第" + x + "个的学习信息");

System.out.println("姓名:");

String name = sc.nextLine();

System.out.println("语文成绩:");

int chinese = sc.nextInt();

System.out.println("数学成绩:");

int math = sc.nextInt();

System.out.println("英语成绩:");

int english = sc.nextInt();

// 创建学生对象

Student s = new Student();

s.setName(name);

s.setChinese(chinese);

s.setMath(math);

s.setEnglish(english);

// 把学生信息添加到集合

ts.add(s);

}

// 遍历集合,把数据写到文本文件

BufferedWriter bw = new BufferedWriter(new FileWriter("students.txt"));

bw.write("学生信息如下:");

bw.newLine();

bw.flush();

bw.write("姓名,语文成绩,数学成绩,英语成绩");

bw.newLine();

bw.flush();

for (Student s : ts) {

StringBuilder sb = new StringBuilder();

sb.append(s.getName()).append(",").append(s.getChinese())

.append(",").append(s.getMath()).append(",")

.append(s.getEnglish());

bw.write(sb.toString());

bw.newLine();

bw.flush();

}

// 释放资源

bw.close();

System.out.println("学习信息存储完毕");

}

}

24.把一个文件中的字符串排序后再写入另一个文件案例

已知s.txt文件中有这样的一个字符串:“hcexfgijkamdnoqrzstuvwybpl”

请编写程序读取数据内容,把数据排序后写入ss.txt中。

分析:

A:把s.txt这个文件给做出来

B:读取该文件的内容,存储到一个字符串中

C:把字符串转换为字符数组

D:对字符数组进行排序

E:把排序后的字符数组转换为字符串

F:把字符串再次写入ss.txt中

public static void main(String[] args) throws IOException {

// 读取该文件的内容,存储到一个字符串中

BufferedReader br = new BufferedReader(new FileReader("s.txt"));

String line = br.readLine();

br.close();

// 把字符串转换为字符数组

char[] chs = line.toCharArray();

// 对字符数组进行排序

Arrays.sort(chs);

// 把排序后的字符数组转换为字符串

String s = new String(chs);

// 把字符串再次写入ss.txt中

BufferedWriter bw = new BufferedWriter(new FileWriter("ss.txt"));

bw.write(s);

bw.newLine();

bw.flush();

bw.close();

}

//注意一下readLine(无需flush) 和 newLine,还有字符数组转换为字符串

25.自定义类模拟BufferedReader的readLine()功能案例(有一定难度)

先写MyBufferedReader类

================================================================

/*

* 用Reader模拟BufferedReader的readLine()功能

*

* readLine():一次读取一行,根据换行符判断是否结束,只返回内容,不返回换行符

*/

public class MyBufferedReader {

private Reader r;

public MyBufferedReader(Reader r) {

this.r = r;

}

/*

* 思考:写一个方法,返回值是一个字符串。

*/

public String readLine() throws IOException {

/*

* 我要返回一个字符串,我该怎么办呢? 我们必须去看看r对象能够读取什么东西呢? 两个读取方法,一次读取一个字符或者一次读取一个字符数组

* 那么,我们要返回一个字符串,用哪个方法比较好呢? 我们很容易想到字符数组比较好,但是问题来了,就是这个数组的长度是多长呢?

* 根本就没有办法定义数组的长度,你定义多长都不合适。 所以,只能选择一次读取一个字符。

* 但是呢,这种方式的时候,我们再读取下一个字符的时候,上一个字符就丢失了 所以,我们又应该定义一个临时存储空间把读取过的字符给存储起来。

* 这个用谁比较和是呢?数组,集合,字符串缓冲区三个可供选择。

* 经过简单的分析,最终选择使用字符串缓冲区对象。并且使用的是StringBuilder

*/

StringBuilder sb = new StringBuilder();

// 做这个读取最麻烦的是判断结束,但是在结束之前应该是一直读取,直到-1

/*

hello

world

java

104101108108111

119111114108100

1069711897

*/

int ch = 0;

while ((ch = r.read()) != -1) { //104,101,108,108,111

if (ch == ‘\r‘) {

continue;//必须\r\n同时存在的时候才算换行,因此这里继续

}

if (ch == ‘\n‘) {

return sb.toString(); //hello

} else {

sb.append((char)ch); //hello//必须转换,不然就会104,101,108,108,111

}

}

// 为了防止数据丢失,判断sb的长度不能大于0//反正就是无论如何,只要有数据了,最后都来拼一下反正数据丢失

if (sb.length() > 0) {

return sb.toString();

}

return null;

}

/*

* 先写一个关闭方法

*/

public void close() throws IOException {

this.r.close();//表面上调用Buffered……的方法,实际上还是用r自身的close方法

}

}

============================================================

但是的话,,

下面是测试类

===========================================

/*

* 测试MyBufferedReader的时候,你就把它当作BufferedReader一样的使用

*/

public class MyBufferedReaderDemo {

public static void main(String[] args) throws IOException {

MyBufferedReader mbr = new MyBufferedReader(new FileReader("my.txt"));

String line = null;

while ((line = mbr.readLine()) != null) {

System.out.println(line);

}

mbr.close();

// System.out.println(‘\r‘ + 0); // 13//通过加0的方法可以查看字符对应的数字编码

// System.out.println(‘\n‘ + 0);// 10

}

}

==============================

26.LineNumberReader的使用案例

由上图可知,其父类是BufferedReader

BufferedReader

|--LineNumberReader

public int getLineNumber()获得当前行号。

public void setLineNumber(int lineNumber)

public static void main(String[] args) throws IOException {

LineNumberReader lnr = new LineNumberReader(new FileReader("my.txt"));

// 从10开始才比较好

// lnr.setLineNumber(10);

// System.out.println(lnr.getLineNumber());

// System.out.println(lnr.getLineNumber());

// System.out.println(lnr.getLineNumber());

String line = null;

while ((line = lnr.readLine()) != null) {

System.out.println(lnr.getLineNumber() + ":" + line);

}

lnr.close();

}

默认

set之后

(自定义类模拟LineNumberReader的获取行号功能案例省略==)

day21笔记补充

IO流小结(掌握)

IO流

|--字节流

|--字节输入流

InputStream

int read():一次读取一个字节

int read(byte[] bys):一次读取一个字节数组

|--FileInputStream

|--BufferedInputStream

|--字节输出流

OutputStream

void write(int by):一次写一个字节

void write(byte[] bys,int index,int len):一次写一个字节数组的一部分

|--FileOutputStream

|--BufferedOutputStream

|--字符流

|--字符输入流

Reader

int read():一次读取一个字符

int read(char[] chs):一次读取一个字符数组

|--InputStreamReader

|--FileReader

|--BufferedReader

String readLine():一次读取一个字符串

|--字符输出流

Writer

void write(int ch):一次写一个字符

void write(char[] chs,int index,int len):一次写一个字符数组的一部分

|--OutputStreamWriter

|--FileWriter

|--BufferedWriter

void newLine():写一个换行符

void write(String line):一次写一个字符串

今天写过的案例(理解 练习一遍)

A:复制文本文件 5种方式(掌握)

B:复制图片(二进制流数据) 4种方式(掌握)

C:把集合中的数据存储到文本文件

D:把文本文件中的数据读取到集合并遍历集合

E:复制单级文件夹

F:复制单级文件夹中指定的文件并修改名称

回顾一下批量修改名称

G:复制多级文件夹

H:键盘录入学生信息按照总分从高到低存储到文本文件

I:把某个文件中的字符串排序后输出到另一个文本文件中

J:用Reader模拟BufferedReader的特有功能

K:模拟LineNumberReader的特有功能

时间: 2024-10-02 03:11:35

传智播客 2015年 刘意_Java基础视频-深入浅出精华版 笔记(day21~)(2016年3月26日01:10:44)的相关文章

传智播客 刘意_2015年Java基础视频-深入浅出精华版 笔记(day11~)(2016年2月3日16:01:00)

day11 1.Eclipse的基本使用 编译: 自动编译,在保存的那一刻(ctrl+s)帮你做好了(class文件出现在bin目录下) 2.Hierarchy 显示Java继承层次结构,选中类后F4 3.eclipse行号的显示与隐藏 4.D:字体大小及颜色 a:Java代码区域的字体大小和颜色: window -- Preferences -- General -- Appearance -- Colors And Fonts -- Java修改 -- Java Edit Text Font

传智 刘意 2015年Java基础视频-深入浅出精华版 笔记 day24~(2016年4月15日00:39:59)

day24 1.多线程(JDK5之后的Lock锁的概述和使用) Lock: void lock(): 获取锁. void unlock():释放锁. ReentrantLock是Lock的实现类. Re---entrant---Lock SellTicket类 import java.util.concurrent.locks.Lock; import java.util.concurrent.locks.ReentrantLock; public class SellTicket implem

传智播客 刘意_2015年Java基础视频-深入浅出精华版 笔记(2015年10月25日23:28:50)

本笔记是个人笔记+摘录笔记相结合,非完全原创 day01 win 7系统打开DOS有趣方法:按住shift+右键,单击“在此处打开命令窗口”(注意:在此处可以是任何的文件夹,不一定是桌面) 用DOS删除的文件不可以在回收站恢复?!! 常用DOS命令d: 回车 盘符切换dir(directory):列出当前目录下的文件以及文件夹md (make directory) : 创建目录(创建文件夹)rd (remove directory): 删除目录(删除文件夹,注意:前提是文件夹必须是空的!!)如果

传智播客_2015年Java基础视频-深入浅出精华版 笔记(2015年9月14日23:11:11)

本笔记是个人笔记+摘录笔记相结合,非完全原创 day01 win 7系统打开DOS有趣方法:按住shift+右键,单击“在此处打开命令窗口”(注意:在此处可以是任何的文件夹,不一定是桌面) 用DOS删除的文件不可以在回收站恢复?!! 常用DOS命令d: 回车 盘符切换dir(directory):列出当前目录下的文件以及文件夹md (make directory) : 创建目录(创建文件夹)rd (remove directory): 删除目录(删除文件夹,注意:前提是文件夹必须是空的!!)如果

传智播客 2015 刘意 Java基础-视频-笔记day27(完结)(2016年5月1日12:42:20)

day27 1.类的加载概述和加载时机 2.类加载器的概述和分类 类加载器 负责将.class文件加载到内存中,并为之生成对应的Class对象. 虽然我们不需要关心类加载机制,但是了解这个机制我们就能更好的理解程序的运行. 类加载器的组成 Bootstrap ClassLoader根类加载器 Extension ClassLoader扩展类加载器 SysetmClassLoader系统类加载器 通过这些描述我们就可以知道我们常用的东西的加载都是由谁来完成的. 到目前为止我们已经知道把class文

2016最新整理传智播客第15期C,C++基础班就业班全套

推荐优秀课程,毕业就业首选C++培训课程 视频地址:http://blog.sina.com.cn/s/blog_1706603600102wxlb.html 传智播客C++第15期

传智播客C/C++各种开发环境搭建视频工具文档免费教程

传智播客作为中国IT培训的领军品牌,一直把握技术趋势,给大家带来最新的技术分享!传智播客C/C++主流开发环境免费分享视频文档中,就有写一个helloworld程序的示范.火速前来下载吧 所谓"工欲善其事,必先利其器". 欲学C/C++,必先搭建好开发环境,欲成为C/C++高手,必先跑起来helloworld! C/C++ IDE仅仅是工具--剑,C/C++语言就是剑法.欲雄霸天下,必须精通各种剑,精通各路剑法.请大家认真关注http://c.itcast.cn最新技术视频. (有图有

传智播客_2015年Java基础视频-深入浅出精华版 个人笔记(2015年8月30日12:57:35)

day01 win 7系统打开DOS有趣方法:按住shift+右键,单击“在此处打开命令窗口”(注意:在此处可以是任何的文件夹,不一定是桌面) 用DOS删除的文件不可以在回收站恢复?!! 常用DOS命令d: 回车 盘符切换dir(directory):列出当前目录下的文件以及文件夹md (make directory) : 创建目录(创建文件夹)rd (remove directory): 删除目录(删除文件夹,注意:前提是文件夹必须是空的!!)如果想删除不是空的文件夹(比如删除aaaaa文件夹

传智播客JavaWeb day01

2015-01-14 一直计划着学习java,今天晚上终于下定决心看了下传智播客朴乾老师的javaweb开发视频day01之第一讲,主要内容是开发工具简单介绍.怎么创建工程.Junit的介绍,我是C#出生,所有对号入了座. 1.JDK  ==  .Net Framework 都是基础库,但是Java开发工具要手动引入,类似dll引入 2.Content Assist  ==   AutoComplete java里面的快捷键是alt+/,个人还是习惯tab键, 3 junit == 单元测试 4