轉換流出現的緣由及格式java
package cn.itcast_01; import java.io.FileInputStream; import java.io.IOException; /* * 字節流讀取中文可能出現的小問題: (數組時的漢子能夠正常輸出) */ public class FileInputStreamDemo { public static void main(String[] args) throws IOException { // 建立字節輸入流對象 FileInputStream fis = new FileInputStream("a.txt"); // 讀取數據 // int by = 0; // while ((by = fis.read()) != -1) { // System.out.print((char) by); // } byte[] bys = new byte[1024]; int len = 0; while ((len = fis.read(bys)) != -1) { System.out.print(new String(bys, 0, len)); } // 釋放資源 fis.close(); } }
編碼表概述和常見編碼表
面試
String 類中的編碼和解碼問題
windows
package cn.itcast_01; import java.io.UnsupportedEncodingException; import java.util.Arrays; /* * String(byte[] bytes, String charsetName):經過指定的字符集解碼字節數組 * byte[] getBytes(String charsetName):使用指定的字符集合把字符串編碼爲字節數組 * * 編碼:把看得懂的變成看不懂的 * String -- byte[] * * 解碼:把看不懂的變成看得懂的 * byte[] -- String * * 舉例:諜戰片(發電報,接電報) * * 碼錶:小本子 * 字符 數值 * * 要發送一段文字: * 今天晚上在老地方見 * * 發送端:今 -- 數值 -- 二進制 -- 發出去 * 接收端:接收 -- 二進制 -- 十進制 -- 數值 -- 字符 -- 今 * * 今天晚上在老地方見 * * 編碼問題簡單,只要編碼解碼的格式是一致的。 */ public class StringDemo { 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] // 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); } }
轉換流OutputStreamWriter的使用
數組
package cn.itcast_02; import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStreamWriter; /* * OutputStreamWriter(OutputStream out):根據默認編碼把字節流的數據轉換爲字符流 * OutputStreamWriter(OutputStream out,String charsetName):根據指定編碼把字節流數據轉換爲字符流 * 把字節流轉換爲字符流。 * 字符流 = 字節流 +編碼表。 */ public class OutputStreamWriterDemo { 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(); } }
轉換流InputStreamReader的使用
app
package cn.itcast_02; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStreamReader; /* * InputStreamReader(InputStream is):用默認的編碼讀取數據 * InputStreamReader(InputStream is,String charsetName):用指定的編碼讀取數據 */ public class InputStreamReaderDemo { public static void main(String[] args) throws IOException { // 建立對象 // InputStreamReader isr = new InputStreamReader(new FileInputStream( // "osw.txt")); // InputStreamReader isr = new InputStreamReader(new FileInputStream( // "osw.txt"), "GBK"); 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種寫數據的方式dom
package cn.itcast_03; import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStreamWriter; /* * OutputStreamWriter的方法: * public void write(int c):寫一個字符 * 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()僅僅刷新緩衝區,刷新以後,流對象還能夠繼續使用。 */ public class OutputStreamWriterDemo { public static void main(String[] args) throws IOException { // 建立對象 OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream( "osw2.txt")); // 寫數據 // public void write(int c):寫一個字符 // osw.write('a'); // osw.write(97); // 爲何數據沒有進去呢? // 緣由是:字符 = 2字節 // 文件中數據存儲的基本單位是字節。 // void flush() // public void write(char[] cbuf):寫一個字符數組 // char[] chs = {'a','b','c','d','e'}; // osw.write(chs); // public void write(char[] cbuf,int off,int len):寫一個字符數組的一部分 // osw.write(chs,1,3); // public void write(String str):寫一個字符串 // osw.write("我愛林青霞"); // public void write(String str,int off,int len):寫一個字符串的一部分 osw.write("我愛林青霞", 2, 3); // 刷新緩衝區 osw.flush(); // osw.write("我愛林青霞", 2, 3); // 釋放資源 osw.close(); // java.io.IOException: Stream closed // osw.write("我愛林青霞", 2, 3); } }
字符流的2種讀數據的方式
ide
package cn.itcast_03; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStreamReader; /* * InputStreamReader的方法: * int read():一次讀取一個字符 * int read(char[] chs):一次讀取一個字符數組 */ public class InputStreamReaderDemo { 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(); } }
字符流複製文本文件案例
學習
package cn.itcast_04; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStreamWriter; /* * 需求:把當前項目目錄下的a.txt內容複製到當前項目目錄下的b.txt中 * * 數據源: * a.txt -- 讀取數據 -- 字符轉換流 -- InputStreamReader * 目的地: * b.txt -- 寫出數據 -- 字符轉換流 -- OutputStreamWriter */ public class CopyFileDemo { 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(); } }
字符流複製文本文件案例
測試
package cn.itcast_04; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; /* * 因爲咱們常見的操做都是使用本地默認編碼,因此,不用指定編碼。 * 而轉換流的名稱有點長,因此,Java就提供了其子類供咱們使用。 * OutputStreamWriter = FileOutputStream + 編碼表(GBK) * FileWriter = FileOutputStream + 編碼表(GBK) * * InputStreamReader = FileInputStream + 編碼表(GBK) * FileReader = FileInputStream + 編碼表(GBK) * /* * 需求:把當前項目目錄下的a.txt內容複製到當前項目目錄下的b.txt中 * * 數據源: * a.txt -- 讀取數據 -- 字符轉換流 -- InputStreamReader -- FileReader * 目的地: * b.txt -- 寫出數據 -- 字符轉換流 -- OutputStreamWriter -- FileWriter */ public class CopyFileDemo2 { 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(); } }
字符緩衝輸出流BufferedWriter的使用
ui
package cn.itcast_05; import java.io.BufferedWriter; import java.io.FileWriter; import java.io.IOException; /* * 字符流爲了高效讀寫,也提供了對應的字符緩衝流。 * BufferedWriter:字符緩衝輸出流 * BufferedReader:字符緩衝輸入流 * * BufferedWriter:字符緩衝輸出流 * 將文本寫入字符輸出流,緩衝各個字符,從而提供單個字符、數組和字符串的高效寫入。 * 能夠指定緩衝區的大小,或者接受默認的大小。在大多數狀況下,默認值就足夠大了。 */ public class BufferedWriterDemo { 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(); } }
字符緩衝流複製文本文件案例
package cn.itcast_06; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; /* * 需求:把當前項目目錄下的a.txt內容複製到當前項目目錄下的b.txt中 * * 數據源: * a.txt -- 讀取數據 -- 字符轉換流 -- InputStreamReader -- FileReader -- BufferedReader * 目的地: * b.txt -- 寫出數據 -- 字符轉換流 -- OutputStreamWriter -- FileWriter -- BufferedWriter */ public class CopyFileDemo { 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(); } }
字符緩衝流的特殊功能
package cn.itcast_06; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; /* * 需求:把當前項目目錄下的a.txt內容複製到當前項目目錄下的b.txt中 * * 數據源: * a.txt -- 讀取數據 -- 字符轉換流 -- InputStreamReader -- FileReader -- BufferedReader * 目的地: * b.txt -- 寫出數據 -- 字符轉換流 -- OutputStreamWriter -- FileWriter -- BufferedWriter */ public class CopyFileDemo2 { 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(); } }
IO流小結圖解
複製文本文件的5種方式案例
package cn.itcast_01; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; /* * 複製文本文件 * * 分析: * 複製數據,若是咱們知道用記事本打開並可以讀懂,就用字符流,不然用字節流。 * 經過該原理,咱們知道咱們應該採用字符流更方便一些。 * 而字符流有5種方式,因此作這個題目咱們有5種方式。推薦掌握第5種。 * 數據源: * c:\\a.txt -- FileReader -- BufferdReader * 目的地: * d:\\b.txt -- FileWriter -- BufferedWriter */ public class CopyFileDemo { 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(); } }
複製圖片的4種方式案例
package cn.itcast_01; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; /* * 複製圖片 * * 分析: * 複製數據,若是咱們知道用記事本打開並可以讀懂,就用字符流,不然用字節流。 * 經過該原理,咱們知道咱們應該採用字節流。 * 而字節流有4種方式,因此作這個題目咱們有4種方式。推薦掌握第4種。 * * 數據源: * c:\\a.jpg -- FileInputStream -- BufferedInputStream * 目的地: * d:\\b.jpg -- FileOutputStream -- BufferedOutputStream */ public class CopyImageDemo { 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(); } }
把集合中的數據存儲到文本文件案例
package cn.itcast_02; import java.io.BufferedWriter; import java.io.FileWriter; import java.io.IOException; import java.util.ArrayList; /* * 需求:把ArrayList集合中的字符串數據存儲到文本文件 * * 分析: * 經過題目的意思咱們能夠知道以下的一些內容, * ArrayList集合裏存儲的是字符串。 * 遍歷ArrayList集合,把數據獲取到。 * 而後存儲到文本文件中。 * 文本文件說明使用字符流。 * * 數據源: * ArrayList<String> -- 遍歷獲得每個字符串數據 * 目的地: * a.txt -- FileWriter -- BufferedWriter */ public class ArrayListToFileDemo { 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(); } }
把文本文件中的數據存儲到集合中案例
package cn.itcast_02; import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; import java.util.ArrayList; /* * 需求:從文本文件中讀取數據(每一行爲一個字符串數據)到集合中,並遍歷集合 * * 分析: * 經過題目的意思咱們能夠知道以下的一些內容, * 數據源是一個文本文件。 * 目的地是一個集合。 * 並且元素是字符串。 * * 數據源: * b.txt -- FileReader -- BufferedReader * 目的地: * ArrayList<String> */ public class FileToArrayListDemo { 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); } } }
隨機獲取文本文件中的姓名案例
package cn.itcast_02; import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; import java.util.ArrayList; import java.util.Random; /* * 需求:我有一個文本文件中存儲了幾個名稱,請你們寫一個程序實現隨機獲取一我的的名字。 * * 分析: * A:把文本文件中的數據存儲到集合中 * B:隨機產生一個索引 * C:根據該索引獲取一個值 */ public class GetName { 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); } }
複製單級文件夾案例
package cn.itcast_03; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; /* * 需求:複製單極文件夾 * * 數據源: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(); } }
複製指定目錄下指定後綴名的文件並修更名稱案例:
package cn.itcast_04; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.FilenameFilter; import java.io.IOException; /* * 需求:複製指定目錄下的指定文件,並修改後綴名。 * 指定的文件是:.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(); } }
複製多級文件夾案例
package cn.itcast_05; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; /* * 需求:複製多極文件夾 * * 數據源: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(); } }
鍵盤錄入學生信息按照總分排序並寫入文本文件案例
package cn.itcast_06; 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; } }
package cn.itcast_06; import java.io.BufferedWriter; import java.io.FileWriter; import java.io.IOException; import java.util.Comparator; import java.util.Scanner; import java.util.TreeSet; /* * 鍵盤錄入5個學生信息(姓名,語文成績,數學成績,英語成績),按照總分從高到低存入文本文件 * * 分析: * A:建立學生類 * B:建立集合對象 * TreeSet<Student> * C:鍵盤錄入學生信息存儲到集合 * D:遍歷集合,把數據寫到文本文件 */ 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("學習信息存儲完畢"); } }
把一個文件中的字符串排序後再寫入另外一個文件案例
package cn.itcast_07; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.util.Arrays; /* * 已知s.txt文件中有這樣的一個字符串:「hcexfgijkamdnoqrzstuvwybpl」 * 請編寫程序讀取數據內容,把數據排序後寫入ss.txt中。 * * 分析: * A:把s.txt這個文件給作出來 * B:讀取該文件的內容,存儲到一個字符串中 * C:把字符串轉換爲字符數組 * D:對字符數組進行排序 * E:把排序後的字符數組轉換爲字符串 * F:把字符串再次寫入ss.txt中 */ public class StringDemo { 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(); } }
自定義類模擬BufferedReader的readLine()功能案例
package cn.itcast_08; import java.io.IOException; import java.io.Reader; /* * 用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 //windows是\r\n兩個時,纔是結束,因此要繼續再讀一個 if (ch == '\r') { continue; } if (ch == '\n') { return sb.toString(); //hello } else { sb.append((char)ch); //hello } } // 爲了防止數據丟失,判斷sb的長度不能大於0 if (sb.length() > 0) { return sb.toString(); } return null; } /* * 先寫一個關閉方法 */ public void close() throws IOException { this.r.close(); } }
package cn.itcast_08; import java.io.FileReader; import java.io.IOException; /* * 測試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 // System.out.println('\n' + 0);// 10 } }
LineNumberReader的使用案例
package cn.itcast_09; import java.io.FileReader; import java.io.IOException; import java.io.LineNumberReader; /* * BufferedReader * |--LineNumberReader * public int getLineNumber()得到當前行號。 * public void setLineNumber(int lineNumber) */ public class LineNumberReaderDemo { 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(); } }
自定義類模擬LineNumberReader的獲取行號功能案例
package cn.itcast_09; import java.io.IOException; import java.io.Reader; public class MyLineNumberReader { private Reader r; private int lineNumber = 0; public MyLineNumberReader(Reader r) { this.r = r; } public int getLineNumber() { // lineNumber++; return lineNumber; } public void setLineNumber(int lineNumber) { this.lineNumber = lineNumber; } public String readLine() throws IOException { lineNumber++; StringBuilder sb = new StringBuilder(); int ch = 0; while ((ch = r.read()) != -1) { if (ch == '\r') { continue; } if (ch == '\n') { return sb.toString(); } else { sb.append((char) ch); } } if (sb.length() > 0) { return sb.toString(); } return null; } public void close() throws IOException { this.r.close(); } }
package cn.itcast_09; import java.io.IOException; import java.io.Reader; import cn.itcast_08.MyBufferedReader; public class MyLineNumberReader2 extends MyBufferedReader { private Reader r; private int lineNumber = 0; public MyLineNumberReader2(Reader r) { super(r); } public int getLineNumber() { return lineNumber; } public void setLineNumber(int lineNumber) { this.lineNumber = lineNumber; } @Override public String readLine() throws IOException { lineNumber++; return super.readLine(); } }
package cn.itcast_09; import java.io.FileReader; import java.io.IOException; public class MyLineNumberReaderTest { public static void main(String[] args) throws IOException { // MyLineNumberReader mlnr = new MyLineNumberReader(new FileReader( // "my.txt")); MyLineNumberReader2 mlnr = new MyLineNumberReader2(new FileReader( "my.txt")); // mlnr.setLineNumber(10); // System.out.println(mlnr.getLineNumber()); // System.out.println(mlnr.getLineNumber()); // System.out.println(mlnr.getLineNumber()); String line = null; while ((line = mlnr.readLine()) != null) { System.out.println(mlnr.getLineNumber() + ":" + line); } mlnr.close(); } }