標籤:
首先要下載Base64.java檔案http://iharder.sourceforge.net/current/java/base64/
將代碼複製到project中。
然後上代碼:
android端代碼:
private void setPicToView(Intent picdata) {
Bundle extras = picdata.getExtras();
if (extras != null) {
mBitmap = extras.getParcelable("data");
view_images.setImageBitmap(mBitmap);
LogUtil.i("運行reg", "運行了嗎?");
ByteArrayOutputStream baos = new ByteArrayOutputStream();
//將bitmap一位元組流輸出 Bitmap.CompressFormat.PNG 壓縮格式,100:壓縮率。baos:位元組流
mBitmap.compress(Bitmap.CompressFormat.PNG, 100, baos);
try {
baos.close();
} catch (IOException e) {
e.printStackTrace();
}
byte[] buffer = baos.toByteArray();
LogUtil.i("圖片大小", buffer.length+"");
//將圖片的位元組流資料加密成base64字元輸出
photo = Base64.encodeBytes(buffer);
}
}
server端代碼:
public static void SaveImages(String photo,String filePath){
String imageName = new IPTimeStamp().getIPTimestamp()+".png";
try {
//對base64資料進行解碼 產生位元組數組。
byte[] photoimg = new BASE64Decoder().decodeBuffer(photo);
for(int i=0;i<photoimg.length;i++){
if(photoimg[i]<0){
//調整異常資料
photoimg[i] += 256;
}
}
// SysUtil.SysOut("圖片的大小:" + photoimg.length);
File file = new File(filePath,imageName); //建立一個目錄 往裡面寫入圖片
if (!file.exists()) {
file.createNewFile(); //file.mkdirs()建立一個目錄,file.createNewFile()建立一個檔案
}
FileOutputStream out = new FileOutputStream(file);
out.write(photoimg);
out.flush();
out.close();
} catch (Exception e) {
// TODO: handle exception
}
Base64實現android端圖片上傳到server端