android上傳圖片到服務器(使用base64字節流的形式經過 AsyncHttpClient框架

前端 andoid  activity用到的函數  
AsyncHttpClient  是一個框架提供的庫  能夠異步傳輸,使用時需下載android-async-http-1.4.4.jar包導入到項目中
[java]  view plain copy 在CODE上查看代碼片 派生到個人代碼片
  1. public static void reg(final Context cont,Bitmap photodata,String regData) {  
  2.         try {  
  3.             ByteArrayOutputStream baos = new ByteArrayOutputStream();  
  4.               
  5.             //將bitmap一字節流輸出 Bitmap.CompressFormat.PNG 壓縮格式,100:壓縮率,baos:字節流  
  6.             photodata.compress(Bitmap.CompressFormat.PNG, 100, baos);  
  7.             baos.close();  
  8.             byte[] buffer = baos.toByteArray();  
  9.             System.out.println("圖片的大小:"+buffer.length);  
  10.               
  11.             //將圖片的字節流數據加密成base64字符輸出  
  12.             String photo = Base64.encodeToString(buffer, 0, buffer.length,Base64.DEFAULT);  
  13.   
  14.             //photo=URLEncoder.encode(photo,"UTF-8");  
  15.             RequestParams params = new RequestParams();  
  16.                     params.put("photo", photo);  
  17.                         params.put("name", "woshishishi");//傳輸的字符數據  
  18.                         String url = "http://10.0.2.2:8080/IC_Server/servlet/RegisterServlet1";  
  19.    
  20.               
  21.                         AsyncHttpClient client = new AsyncHttpClient();  
  22.                         client.post(url, params, new AsyncHttpResponseHandler() {  
  23.                         @Override    
  24.                     public void onSuccess(int statusCode, String content){    
  25.                     Toast.makeText(cont, "頭像上傳成功!"+content, 0)  
  26.                      .show();   
  27.                          }    
  28.                     @Override    
  29.                     public void onFailure(Throwable e, String data){    
  30.                     Toast.makeText(cont, "頭像上傳失敗!", 0)  
  31.                         .show();   
  32.                 }  
  33.             });  
  34.    
  35.         } catch (Exception e) {  
  36.             e.printStackTrace();  
  37.         }  
  38.   
  39.     }  
服務器中 serverlet中的代碼:
[java]  view plain copy 在CODE上查看代碼片 派生到個人代碼片
  1. package uestc.app.ic.server.servlet;  
  2.   
  3. import java.io.File;  
  4. import java.io.FileOutputStream;  
  5. import java.io.IOException;  
  6.   
  7. import javax.servlet.ServletException;  
  8. import javax.servlet.http.HttpServlet;  
  9. import javax.servlet.http.HttpServletRequest;  
  10. import javax.servlet.http.HttpServletResponse;  
  11.   
  12. import sun.misc.BASE64Decoder;  
  13.   
  14. public class RegisterServlet1 extends HttpServlet {  
  15.     public void doGet(HttpServletRequest request, HttpServletResponse response)  
  16.             throws ServletException, IOException {  
  17.         request.setCharacterEncoding("utf-8");  
  18.         response.setCharacterEncoding("utf-8");  
  19.         response.setContentType("text/html");  
  20.         String photo = request.getParameter("photo");  
  21.         String name = request.getParameter("name");  
  22.   
  23.         try {  
  24.   
  25.             // 對base64數據進行解碼 生成 字節數組,不能直接用Base64.decode();進行解密  
  26.             byte[] photoimg = new BASE64Decoder().decodeBuffer(photo);  
  27.             for (int i = 0; i < photoimg.length; ++i) {  
  28.                 if (photoimg[i] < 0) {  
  29.                     // 調整異常數據  
  30.                     photoimg[i] += 256;  
  31.                 }  
  32.             }  
  33.   
  34.             // byte[] photoimg = Base64.decode(photo);//此處不能用Base64.decode()方法解密,我調試時用此方法每次解密出的數據都比原數據大  因此用上面的函數進行解密,在網上直接拷貝的,花了好幾個小時才找到這個錯誤(菜鳥不容易啊)  
  35.             System.out.println("圖片的大小:" + photoimg.length);  
  36.             File file = new File("e:""decode.png");  
  37.             File filename = new File("e:\\name.txt");  
  38.             if (!filename.exists()) {  
  39.                 file.createNewFile();  
  40.             }  
  41.             if (!file.exists()) {  
  42.                 file.createNewFile();  
  43.             }  
  44.             FileOutputStream out = new FileOutputStream(file);  
  45.             FileOutputStream out1 = new FileOutputStream(filename);  
  46.             out1.write(name.getBytes());  
  47.             out.write(photoimg);  
  48.             out.flush();  
  49.             out.close();  
  50.             out1.flush();  
  51.             out1.close();  
  52.         } catch (Exception e) {  
  53.             // TODO Auto-generated catch block  
  54.             e.printStackTrace();  
  55.         }  
相關文章
相關標籤/搜索