iOS開發UI篇—使用storyboard建立導航控制器以及控制器的生命週期

來源:互聯網
上載者:User

標籤:

 jar包是commons-codec.jar。

  pnuts

//base64解碼成圖片function gldBase64ToImage(imgStr,imgFilePath) { // 對位元組數組字串進行Base64解碼並產生圖片    if ("".equals(imgStr) || imgStr == null) // 映像資料為空白        return false        
  //轉碼的時候它可能有首碼格式,所以需要拆分,取有效字串 imgArr = imgStr.split(",") if(imgArr.length == 1){ imgStr = imgArr[0] }else{ imgStr = imgArr[1] } imgByte = class org.apache.commons.codec.binary.Base64::decodeBase64(imgStr) // Base64解碼 for (i = 0; i < imgByte.length; ++i) { if (imgByte[i] < 0) {// 調整異常資料 imgByte[i] += 256; } } out = class java.io.FileOutputStream(imgFilePath) out.write(imgByte) out.flush() out.close()}

  java

 /**      * 對位元組數組字串進行Base64解碼並產生圖片      * @param imgStr 圖片資料      * @param imgFilePath 儲存圖片全路徑地址      * @return      */     public static boolean generateImage(String imgStr,String imgFilePath){         //         if ( "".equals(imgStr) || imgStr == null) //映像資料為空白             return false;                 try          {             //Base64解碼             byte[] b = Base64.decodeBase64(imgStr);             for(int i=0;i<b.length;++i)             {                 if(b[i]<0)                 {//調整異常資料                     b[i]+=256;                 }             }             //產生jpeg圖片              OutputStream out = new FileOutputStream(imgFilePath);                 out.write(b);             out.flush();             out.close();             return true;         }          catch (Exception e)          {             return false;         }     } }

 

iOS開發UI篇—使用storyboard建立導航控制器以及控制器的生命週期

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.