將映像資料儲存成文字格式設定(字串)

來源:互聯網
上載者:User

以下函數是將圖片資料(包括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;

 }
 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.