以下函數是將圖片資料(包括jpg、png)轉換成字串格式,使得圖象資料可以存在文字檔中,但這種方法要犧牲的儲存空間比較大,1.3K的圖片轉換後會變成7.8K,後來發現有更好的演算法,他就是Base64演算法,同樣可以達到儲存在文本中的目的,但檔案就小好多,大概1.7K左右,不到原檔案的兩倍。
public static String byteToString(byte b) {
byte high, low;
byte maskHigh = (byte) 0xf0;
byte maskLow = 0x0f;
high = (byte) ((b & maskHigh) >> 4);
low = (byte) (b & maskLow);
StringBuffer buf = new StringBuffer();
buf.append(findHex(high));
buf.append(findHex(low));
return buf.toString();
}
private static char findHex(byte b) {
int t = new Byte(b).byteValue();
t = t < 0 ? t + 16 : t;
if ((0 <= t) && (t <= 9)) {
return (char) (t + '0');
}
return (char) (t - 10 + 'A');
}
public byte[] stringToByte(String s) {
byte imageData[] = new byte[s.length() / 2];
int j = 0;
for (int i = 0; i < s.length(); i += 2) {
try {
imageData[j] = (byte) Integer.parseInt(s.substring(i, i + 2),
16);
j++;
} catch (NumberFormatException e) {
}
}
return imageData;
}