package com.test.readtatle;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.LinkedHashMap;
import java.util.Map;
public class ReadTatle {
public static void main(String[] args) throws IOException {
String entitiy = "GBK";
BufferedInputStream bis = new BufferedInputStream(new FileInputStream("D:" + File.separator + "1.eml"));
byte[] b = new byte[bis.available()];
bis.read(b);
bis.close();
Map<String, String> map = new LinkedHashMap<String, String>();
byte[] newbyte = null;
int begin = 0;
int end = 0;
for (int i = 0; i < b.length; i++) {
// Integer.toHexString()转化十六进制
//
if (Integer.toHexString(b[i]).equals("a") || i == b.length - 1) {
end = i;
//如果i等于byte[]数组长度减去1
if (i == b.length - 1) {
end++;
}
//创建一个新的byte数组并且它的长度为end - begin
newbyte = new byte[end - begin];
//然后给新的byte数组copy值,(数据源,数据开始的地方,copy到的地方,copy到的数组放的起始位置,复制的长度)
System.arraycopy(b, begin, newbyte, 0, end - begin);
begin = end + 1;
//把字节数组转为字符串,第一个参数是字节数组,第二个参数是字符编码
String s = new String(newbyte, entitiy);
System.out.println(s);
//创建一个索引寻找冒号
int eml = s.indexOf(":");
//如果还有冒号
if (eml != -1) {
//第一个int为开始的索引,对应String数字中的开始位置,
//第二个是截止的索引位置,对应String中的结束位置
String emlKey = s.substring(0, eml);
String emlVal = s.substring(eml + 1, s.length());
//把创建好的key跟val放到map.put里
map.put(emlKey, emlVal);
}
}
}
// Map.Entry是Map声明的一个内部泛型接口,entrySet()是它的方法,ntrySet()的返回值是Set集合,此集合的类型为Map.Entry
for (Map.Entry<String, String> entry : map.entrySet()) {
System.out.println("key=" + entry.getKey() + "value=" + entry.getValue());
}
}
}
这个代码中,这一行是神马意思
(Integer.toHexString(b[i]).equals("a") || i == b.length - 1)
添加回答
举报
0/150
提交
取消