Png文件的流读取写出时间:2023-02-04 17:03:43package lab.sodino.PngTest;import java.io.ByteArrayOutputStream;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.IOException;import java.io.InputStream;public class PngToStreamFile { public static void main(String[] args) { byte[] bs = getFileToByte(new File("D://01.png")); int start = 8; int end = bs.length - 8; int count = bs.length - 16; for (int i = 0; i < count; i++) { System.out.print(Integer.toHexString(bs[i]) + " "); if (i != 0 && i % 27 == 0) { System.out.println(); } } try { File f = new File("D://01.dat"); if (f.exists() == false) { f.createNewFile(); } FileOutputStream fos = new FileOutputStream(f); fos.write(bs); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException ie) { ie.printStackTrace(); } } public static byte[] getFileToByte(File file) { byte[] by = new byte[(int) file.length()]; try { InputStream is = new FileInputStream(file); ByteArrayOutputStream bytestream = new ByteArrayOutputStream(); byte[] bb = new byte[2048]; int ch; ch = is.read(bb); while (ch != -1) { bytestream.write(bb, 0, ch); ch = is.read(bb); System.out.println("ch : " + ch); } by = bytestream.toByteArray(); } catch (Exception ex) { ex.printStackTrace(); } return by; }} package lab.sodino.PngTest;/** * 做了一段手机游戏移植。 * 有时候碰到游戏的资源文件被做成一个数据文件。 * 想提出来很费事,所以自己写了一个程序来处理。 * 方法就是自定义几个字节。与PNG格式的图片字节相匹配。 * 这样把PNG图片信息提出来 * * 数据文件转png图片程序 * * @author k7sem * 05年10月12日修改 */import java.io.*;class transfer { // 定义PNG文件头部的匹配参数 byte a1 = (byte) 0x89; byte a2 = (byte) 0x50; byte a3 = (byte) 0x4e; byte a4 = (byte) 0x47; byte a5 = (byte) 0x0d; byte a6 = (byte) 0x0a; byte a7 = (byte) 0x1a; byte a8 = (byte) 0x0a; // ------------png file end--------------//png文件尾 byte e1 = (byte) 0x49; byte e2 = (byte) 0x45; byte e3 = (byte) 0x4e; byte e4 = (byte) 0x44; byte e5 = (byte) 0xae; byte e6 = (byte) 0x42; byte e7 = (byte) 0x60; byte e8 = (byte) 0x82; // -------------------------------------- transfer() // transfer的构造 { } // 从屏幕中输入要转换的文件路径 public String in()// Type a file path and return the path as a String { System.out.println("Please type the file path:"); BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String ss = ""; try { ss = br.readLine(); } catch (Exception e) { e.printStackTrace(); } return ss; } // 读取文件路径,进行算法分析,从新写入新文件 public void readFile(String s) {// use the file path to contruct a method which is solve the // byte of this file and return a byte array byte[] b = new byte[650000]; // 定义存放被处理文件的字节数组,一定要比被处理的文件实际大小要大 int i = 0; // 返回具体读到了多少个字节 try { FileInputStream fs = new FileInputStream(new File(s)); // 用文件路径 构造一个文件流 i = fs.read(b); // 将读到的byte放入 b的数组中,返回实际读到数i if (i != -1) // 判断文件是否为空 { System.out.println("The file size is " + i + " byte"); } else { System.out.println("The file is empty "); } } catch (Exception e) { e.printStackTrace(); } int h = 0; boolean head = true; boolean f = false; // 保证每次只查找一次文件尾 int y = 0; // 存放文件byte的长度 int headbyte = 0; for (int j = 0; j < i; j++) // 对所有byte遍历 { if ((a1 == b[j]) && (a2 == b[j + 1]) && (a3 == b[j + 2]) && (a4 == b[j + 3]) && (a5 == b[j + 4]) && (a6 == b[j + 5]) && (a7 == b[j + 6]) && (a8 == b[j + 7])) // 判断前8个字节是否为png头部信息 { if (head) // 判断第一个PNG文件从什么位置开始 { head = false; headbyte = j; } for (int z = j; z < i; z++) // 对所有byte遍历 { if (!f) { if ((e1 == b[z]) && (e2 == b[z + 1]) && (e3 == b[z + 2]) && (e4 == b[z + 3]) && (e5 == b[z + 4]) && (e6 == b[z + 5]) && (e7 == b[z + 6]) && (e8 == b[z + 7]))// 判断后8个字节是否为文件尾 { y = z - j + headbyte;// 满足条件后 将文件尾位置减掉文件头位置再减掉 头部信息位数 所得长度 f = true; try { FileOutputStream fos = new FileOutputStream(new File(".", h + ".png")); fos.write(b, j, y); h++; } catch (Exception e) { } } } } f = false; } } System.out.println(h + " files has transfer successful!!");// 打印出实际转换了多少个PNG文件 } public static void main(String[] args) { transfer ui = new transfer();// 产生transfer 对象 ui.readFile(ui.in()); // 执行读取文件的方法 }}