您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關使用java如何對二進制文件進行解析,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
1、需求說明,實現細節要求:
解析二進制文件 files\case10\binary,其中包含一個字符串和一張圖片,數據文件格式為字符串數據長度(2字節)+字符串內容+圖片數據長度(4字節)+圖片數據,數據長度均為數據字節長度,高位在后,字符串為UTF-8編碼,請解析,輸出字符串內容,圖片文件保存為files\case10\test.png。
2、實現代碼:
package com.igen.case10; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.net.URISyntaxException; /** * * @ClassName Case10 * @Description TODO * * @author wjggwm * @data 2017年2月7日 上午11:46:25 */ public class Case10 { static final String fileName = "/test.png"; static final String filePath = "D:/files/case10"; static final String sourceFileName = "binary"; public static void main(String[] args) { try { readFile(Case10.class.getResource(sourceFileName).toURI().getPath()); } catch (URISyntaxException e) { e.printStackTrace(); } } /** * * @Description 解析二進制文件 * @param sourceFileName * * @author wjggwm * @data 2017年2月7日 上午11:47:12 */ public static void readFile(String sourceFileName) { InputStream in = null; try { in = new FileInputStream(sourceFileName); // 讀取字符串數據長度字節 byte[] txtLenByte = new byte[2]; in.read(txtLenByte); int txtlen = byte2ToUnsignedShort(txtLenByte, 0); // 讀取字符串字節 byte[] txtByte = new byte[txtlen]; in.read(txtByte); //字符串為UTF-8編碼 String txt = new String(txtByte, "UTF-8"); // 輸出字符串 System.out.println(txt); // 讀取圖片數據長度 byte[] imgLenByte = new byte[4]; in.read(imgLenByte); int imgLen = byte4ToInt(imgLenByte, 0); // 讀取圖片數據 byte[] img = new byte[imgLen]; in.read(img); // 生成圖片文件 saveToImgByBytes(filePath, fileName, img); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally { if (in != null) { try { in.close(); } catch (IOException e) { e.printStackTrace(); } } } } /** * * @Description 將字節寫入文件 * @param imgName * @param imgByte * * @author wjggwm * @data 2017年2月7日 上午11:07:45 */ public static void saveToImgByBytes(String filePath, String imgName, byte[] imgByte) { try { File dic = new File(filePath); if (!dic.exists()) { dic.mkdirs(); } File image = new File(filePath + imgName); if (!image.exists()) { image.createNewFile(); } FileOutputStream fos = new FileOutputStream(image); fos.write(imgByte); fos.flush(); fos.close(); } catch (Exception e) { e.printStackTrace(); } } /** * * @Description byte數組轉換為無符號short整數 * @param bytes * @param off * @return * * @author wjggwm * @data 2017年2月7日 上午11:05:58 */ public static int byte2ToUnsignedShort(byte[] bytes, int off) { // 注意高位在后面,即大小端問題 int low = bytes[off]; int high = bytes[off + 1]; return (high << 8 & 0xFF00) | (low & 0xFF); } /** * * @Description byte數組轉換為int整數 * @param bytes * @param off * @return * * @author wjggwm * @data 2017年2月7日 上午11:07:23 */ public static int byte4ToInt(byte[] bytes, int off) { // 注意高位在后面,即大小端問題 int b3 = bytes[off] & 0xFF; int b2 = bytes[off + 1] & 0xFF; int b1 = bytes[off + 2] & 0xFF; int b0 = bytes[off + 3] & 0xFF; return (b0 << 24) | (b1 << 16) | (b2 << 8) | b3; } }
關于使用java如何對二進制文件進行解析就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。