国产片侵犯亲女视频播放_亚洲精品二区_在线免费国产视频_欧美精品一区二区三区在线_少妇久久久_在线观看av不卡

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|Java教程|ASP教程|編程技術|正則表達式|C/C++|IOS|C#|Swift|Android|VB|R語言|JavaScript|易語言|vb.net|

服務器之家 - 編程語言 - Java教程 - java實現解析二進制文件的方法(字符串、圖片)

java實現解析二進制文件的方法(字符串、圖片)

2020-08-06 14:57那君只為夢想而生 Java教程

本篇文章主要介紹了java實現解析二進制文件的方法(字符串、圖片),小編覺得挺不錯的,現在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧

1、需求說明,實現細節要求:

解析二進制文件 files\case10\binary,其中包含一個字符串和一張圖片,數據文件格式為字符串數據長度(2字節)+字符串內容+圖片數據長度(4字節)+圖片數據,數據長度均為數據字節長度,高位在后,字符串為UTF-8編碼,請解析,輸出字符串內容,圖片文件保存為files\case10\test.png。

2、實現代碼:

java" id="highlighter_602441">
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
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;
 
}
 
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持服務器之家。

原文鏈接:http://www.cnblogs.com/gxbk629/p/6375122.html

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 日韩欧美精品在线 | 麻豆自拍偷拍 | 成人a视频在线观看 | 欧美伦理一区二区三区 | av免费人人干 | 亚洲精品免费看 | 免费一级欧美在线观看视频 | 自拍偷拍在线视频 | av中文字幕在线播放 | 亚洲狠狠| 欧美日韩国产综合视频 | 午夜精品一区二区三区在线视频 | 亚洲免费在线观看 | 一本一本久久a久久精品综合妖精 | 亚洲一区二区三区在线视频 | 亚洲视频免费观看 | 欧美在线观看免费观看视频 | 91精品国产乱码久久久久久 | 成人久久久 | 久久这里只有精品免费 | 国产精品一区二区久久 | av在线播放网址 | 精品国产乱码久久久久久图片 | 国产精品国产三级国产aⅴ 成人在线免费看 | 亚洲成av人片在线观看 | 国产精品免费视频一区二区三区 | 精品久久久久久亚洲精品 | 91婷婷射 | 免费羞羞视频网站 | 久久久久久久久久久久福利 | 国产一区视频在线 | 国产精品福利91 | 亚洲国产一区二区三区精品 | 国产精品一区久久久 | 国产精品美女久久久久久不卡 | 日韩电影免费在线观看中文字幕 | 天天草天天干 | 91精品国产91久久综合桃花 | 精品在线一区 | 亚洲精品不卡 | 欧美一区二区在线视频 |