Android如何實現(xiàn)頭像上傳功能

這篇文章將為大家詳細(xì)講解有關(guān)Android如何實現(xiàn)頭像上傳功能,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

十余年的山丹網(wǎng)站建設(shè)經(jīng)驗,針對設(shè)計、前端、開發(fā)、售后、文案、推廣等六對一服務(wù),響應(yīng)快,48小時及時工作處理。成都全網(wǎng)營銷推廣的優(yōu)勢是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動調(diào)整山丹建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計,從而大程度地提升瀏覽體驗。創(chuàng)新互聯(lián)公司從事“山丹網(wǎng)站設(shè)計”,“山丹網(wǎng)站推廣”以來,每個客戶項目都認(rèn)真落實執(zhí)行。

效果圖

Android如何實現(xiàn)頭像上傳功能

首先看上傳圖片的工具類,一點都沒有少復(fù)制就可以用

**
 * Created by Administrator on 2016/7/28.
 * 上傳圖片工具類
 */
public class UploadUtil {
 private static UploadUtil uploadUtil;
 private static final String BOUNDARY = UUID.randomUUID().toString(); // 邊界標(biāo)識 隨機生成
 private static final String PREFIX = "--";
 private static final String LINE_END = "\r\n";
 private static final String CONTENT_TYPE = "multipart/form-data"; // 內(nèi)容類型

 private UploadUtil() {

 }

 /**
 * 單例模式獲取上傳工具類
 *
 * @return
 */
 public static UploadUtil getInstance() {
 if (null == uploadUtil) {
  uploadUtil = new UploadUtil();
 }
 return uploadUtil;
 }

 private static final String TAG = "UploadUtil";
 private int readTimeOut = 10 * 1000; // 讀取超時
 private int connectTimeout = 10 * 1000; // 超時時間
 /***
 * 請求使用多長時間
 */
 private static int requestTime = 0;

 private static final String CHARSET = "utf-8"; // 設(shè)置編碼

 /***
 * 上傳成功
 */
 public static final int UPLOAD_SUCCESS_CODE = 1;
 /**
 * 文件不存在
 */
 public static final int UPLOAD_FILE_NOT_EXISTS_CODE = 2;
 /**
 * 服務(wù)器出錯
 */
 public static final int UPLOAD_SERVER_ERROR_CODE = 3;
 protected static final int WHAT_TO_UPLOAD = 1;
 protected static final int WHAT_UPLOAD_DONE = 2;

 /**
 * android上傳文件到服務(wù)器
 *
 * @param filePath 需要上傳的文件的路徑
 * @param fileKey 在網(wǎng)頁上<input type=file name=xxx/> xxx就是這里的fileKey
 * @param RequestURL 請求的URL
 */
 public void uploadFile(String filePath, String fileKey, String RequestURL,
    Map<String, String> param) {
 if (filePath == null) {
  sendMessage(UPLOAD_FILE_NOT_EXISTS_CODE, "文件不存在");
  return;
 }
 try {
  File file = new File(filePath);
  uploadFile(file, fileKey, RequestURL, param);
 } catch (Exception e) {
  sendMessage(UPLOAD_FILE_NOT_EXISTS_CODE, "文件不存在");
  e.printStackTrace();
  return;
 }
 }

 /**
 * android上傳文件到服務(wù)器
 *
 * @param file 需要上傳的文件
 * @param fileKey 在網(wǎng)頁上<input type=file name=xxx/> xxx就是這里的fileKey
 * @param RequestURL 請求的URL
 */
 public void uploadFile(final File file, final String fileKey,
    final String RequestURL, final Map<String, String> param) {
 if (file == null || (!file.exists())) {
  sendMessage(UPLOAD_FILE_NOT_EXISTS_CODE, "文件不存在");
  return;
 }

 Log.i(TAG, "請求的URL=" + RequestURL);
 Log.i(TAG, "請求的fileName=" + file.getName());
 Log.i(TAG, "請求的fileKey=" + fileKey);
 new Thread(new Runnable() { //開啟線程上傳文件
  @Override
  public void run() {
  toUploadFile(file, fileKey, RequestURL, param);
  }
 }).start();

 }

 private void toUploadFile(File file, String fileKey, String RequestURL,
    Map<String, String> param) {
 String result = null;
 requestTime = 0;

 long requestTime = System.currentTimeMillis();
 long responseTime = 0;

 try {
  URL url = new URL(RequestURL);
  HttpURLConnection conn = (HttpURLConnection) url.openConnection();
  conn.setReadTimeout(readTimeOut);
  conn.setConnectTimeout(connectTimeout);
  conn.setDoInput(true); // 允許輸入流
  conn.setDoOutput(true); // 允許輸出流
  conn.setUseCaches(false); // 不允許使用緩存
  conn.setRequestMethod("POST"); // 請求方式
  conn.setRequestProperty("Charset", CHARSET); // 設(shè)置編碼
  conn.setRequestProperty("connection", "keep-alive");
  conn.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)");
  conn.setRequestProperty("Content-Type", CONTENT_TYPE + ";boundary=" + BOUNDARY);
// conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");

/**
 * 當(dāng)文件不為空,把文件包裝并且上傳
 */
  DataOutputStream dos = new DataOutputStream(conn.getOutputStream());
  StringBuffer sb = null;
  String params = "";

/***
 * 以下是用于上傳參數(shù)
 */
  if (param != null && param.size() > 0) {
  Iterator<String> it = param.keySet().iterator();
  while (it.hasNext()) {
   sb = null;
   sb = new StringBuffer();
   String key = it.next();
   String value = param.get(key);
   sb.append(PREFIX).append(BOUNDARY).append(LINE_END);
   sb.append("Content-Disposition: form-data; name=\"").append(key).append("\"").append(LINE_END).append(LINE_END);
   sb.append(value).append(LINE_END);
   params = sb.toString();
   Log.i(TAG, key + "=" + params + "##");
   dos.write(params.getBytes());
// dos.flush();
  }
  }

  sb = null;
  params = null;
  sb = new StringBuffer();
/**
 * 這里重點注意: name里面的值為服務(wù)器端需要key 只有這個key 才可以得到對應(yīng)的文件
 * filename是文件的名字,包含后綴名的 比如:abc.png
 */
  sb.append(PREFIX).append(BOUNDARY).append(LINE_END);
  sb.append("Content-Disposition:form-data; name=\"" + fileKey
   + "\"; filename=\"" + file.getName() + "\"" + LINE_END);
  sb.append("Content-Type:image/pjpeg" + LINE_END); // 這里配置的Content-type很重要的 ,用于服務(wù)器端辨別文件的類型的
  sb.append(LINE_END);
  params = sb.toString();
  sb = null;

  Log.i(TAG, file.getName() + "=" + params + "##");
  dos.write(params.getBytes());
/**上傳文件*/
  InputStream is = new FileInputStream(file);
  onUploadProcessListener.initUpload((int) file.length());
  byte[] bytes = new byte[1024];
  int len = 0;
  int curLen = 0;
  while ((len = is.read(bytes)) != -1) {
  curLen += len;
  dos.write(bytes, 0, len);
  onUploadProcessListener.onUploadProcess(curLen);
  }
  is.close();

  dos.write(LINE_END.getBytes());
  byte[] end_data = (PREFIX + BOUNDARY + PREFIX + LINE_END).getBytes();
  dos.write(end_data);
  dos.flush();
//
// dos.write(tempOutputStream.toByteArray());
/**
 * 獲取響應(yīng)碼 200=成功 當(dāng)響應(yīng)成功,獲取響應(yīng)的流
 */
  int res = conn.getResponseCode();
  responseTime = System.currentTimeMillis();
  this.requestTime = (int) ((responseTime - requestTime) / 1000);
  Log.e(TAG, "response code:" + res);
  if (res == 200) {
  Log.e(TAG, "request success");
  InputStream input = conn.getInputStream();
  StringBuffer sb1 = new StringBuffer();
  int ss;
  while ((ss = input.read()) != -1) {
   sb1.append((char) ss);
  }
  String s = sb1.toString();
  result = s;
  Log.e(TAG, "result : " + result);
  sendMessage(UPLOAD_SUCCESS_CODE, "上傳結(jié)果:"
   + result);
  return;
  } else {
  Log.e(TAG, "request error" + res);
  sendMessage(UPLOAD_SERVER_ERROR_CODE, "上傳失?。篶ode=" + res);
  return;
  }
 } catch (MalformedURLException e) {
  sendMessage(UPLOAD_SERVER_ERROR_CODE, "上傳失?。篹rror=" + e.getMessage());
  e.printStackTrace();
  return;
 } catch (IOException e) {
  sendMessage(UPLOAD_SERVER_ERROR_CODE, "上傳失?。篹rror=" + e.getMessage());
  e.printStackTrace();
  return;
 }
 }

 /**
 * 發(fā)送上傳結(jié)果
 *
 * @param responseCode
 * @param responseMessage
 */
 private void sendMessage(int responseCode, String responseMessage) {
 onUploadProcessListener.onUploadDone(responseCode, responseMessage);
 }

 /**
 * 下面是一個自定義的回調(diào)函數(shù),用到回調(diào)上傳文件是否完成
 *
 * @author shimingzheng
 */
 public static interface OnUploadProcessListener {
 /**
  * 上傳響應(yīng)
  *
  * @param responseCode
  * @param message
  */
 void onUploadDone(int responseCode, String message);

 /**
  * 上傳中
  *
  * @param uploadSize
  */
 void onUploadProcess(int uploadSize);

 /**
  * 準(zhǔn)備上傳
  *
  * @param fileSize
  */
 void initUpload(int fileSize);
 }

 private OnUploadProcessListener onUploadProcessListener;

 public void setOnUploadProcessListener(
  OnUploadProcessListener onUploadProcessListener) {
 this.onUploadProcessListener = onUploadProcessListener;
 }

 public int getReadTimeOut() {
 return readTimeOut;
 }

 public void setReadTimeOut(int readTimeOut) {
 this.readTimeOut = readTimeOut;
 }

 public int getConnectTimeout() {
 return connectTimeout;
 }

 public void setConnectTimeout(int connectTimeout) {
 this.connectTimeout = connectTimeout;
 }

 /**
 * 獲取上傳使用的時間
 *
 * @return
 */
 public static int getRequestTime() {
 return requestTime;
 }

 public static interface uploadProcessListener {

 }

 /**
 * 將Bitmap轉(zhuǎn)換成文件
 * 保存文件
 *
 * @param bm
 * @param fileName
 * @throws IOException
 */
 public static File saveFile(Bitmap bm, String path, String fileName) throws IOException {
 File dirFile = new File(path);
 if (!dirFile.exists()) {
  dirFile.mkdir();
 }
 File myCaptureFile = new File(path, fileName);
 BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(myCaptureFile));
 bm.compress(Bitmap.CompressFormat.JPEG, 80, bos);
 bos.flush();
 bos.close();
 return myCaptureFile;
 }

}

從相冊獲取圖片的方法

/**
 * 從相冊選擇圖片來源
 */
private void getPhoto() {
 Intent intent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
 intent.setDataAndType(MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
  "image/*");
 startActivityForResult(intent, PHOTO_REQUEST);
}

從系統(tǒng)相機拍照獲取照片

/**
 * 從系統(tǒng)相機選擇圖片來源
 */
private void getCamera() {
 Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);

 // 下面這句指定調(diào)用相機拍照后的照片存儲的路徑
 intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File(
  Environment.getExternalStorageDirectory(), "hand.jpg")));
 startActivityForResult(intent, CAMERA_REQUEST);
}

調(diào)用系統(tǒng)裁剪工具裁剪圖片

/****
 * 調(diào)用系統(tǒng)自帶切圖工具對圖片進行裁剪
 * 微信也是
 *
 * @param uri
 */
private void photoClip(Uri uri) {
 // 調(diào)用系統(tǒng)中自帶的圖片剪裁
 Intent intent = new Intent("com.android.camera.action.CROP");
 intent.setDataAndType(uri, "image/*");
 // 下面這個crop=true是設(shè)置在開啟的Intent中設(shè)置顯示的VIEW可裁剪
 intent.putExtra("crop", "true");
 // aspectX aspectY 是寬高的比例
 intent.putExtra("aspectX", 1);
 intent.putExtra("aspectY", 1);
 // outputX outputY 是裁剪圖片寬高
 intent.putExtra("outputX", 150);
 intent.putExtra("outputY", 150);
 intent.putExtra("return-data", true);
 startActivityForResult(intent, PHOTO_CLIP);
}

上傳服務(wù)器的方法

/**
 * 上傳圖片到服務(wù)器
 */
private void toUploadFile() {
 pd = ProgressDialog.show(this, "", "正在上傳文件...");
 pd.show();
 String fileKey = "avatarFile";
 UploadUtil uploadUtil = UploadUtil.getInstance();
 uploadUtil.setOnUploadProcessListener(MainActivity.this); //設(shè)置監(jiān)聽器監(jiān)聽上傳狀態(tài)

 Map<String, String> params = new HashMap<String, String>();//上傳map對象
 params.put("userId", "");
 uploadUtil.uploadFile(filepath, fileKey, "上傳頭像的地址", params);
 Toast.makeText(this, "上傳成功", Toast.LENGTH_LONG).show();
}

重新服務(wù)器響應(yīng)方法

/**
 * 上傳服務(wù)器響應(yīng)回調(diào)
 */
@Override
public void onUploadDone(int responseCode, String message) {
 //上傳完成響應(yīng)
 pd.dismiss();
 Message msg = Message.obtain();
 msg.what = UPLOAD_FILE_DONE;
 msg.arg1 = responseCode;
 msg.obj = message;
}

@Override
public void onUploadProcess(int uploadSize) {
 //上傳中
 Message msg = Message.obtain();
 msg.what = UPLOAD_IN_PROCESS;
 msg.arg1 = uploadSize;
}

@Override
public void initUpload(int fileSize) {
 //準(zhǔn)備上傳
 Message msg = Message.obtain();
 msg.what = UPLOAD_INIT_PROCESS;
 msg.arg1 = fileSize;
}

重寫這些方法需要實現(xiàn)接口

public class MainActivity extends AppCompatActivity implements View.OnClickListener, UploadUtil.OnUploadProcessListener {

重寫onActivityResult獲取數(shù)據(jù)

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
 super.onActivityResult(requestCode, resultCode, data);
 switch (requestCode) {
 case CAMERA_REQUEST:
  switch (resultCode) {
  case -1://-1表示拍照成功
   File file = new File(Environment.getExternalStorageDirectory()
    + "/hand.jpg");//保存圖片
   if (file.exists()) {
   //對相機拍照照片進行裁剪
   photoClip(Uri.fromFile(file));
   }
  }
  break;

 case PHOTO_REQUEST://從相冊取
  if (data != null) {
  Uri uri = data.getData();
  //對相冊取出照片進行裁剪
  photoClip(uri);

  }
  break;
 case PHOTO_CLIP:
  //完成
  if (data != null) {

  Bundle extras = data.getExtras();
  if (extras != null) {
   Bitmap photo = extras.getParcelable("data");
   try {
   //獲得圖片路徑
   filepath = UploadUtil.saveFile(photo, Environment.getExternalStorageDirectory().toString(), "hand.jpg");
   //上傳照片
   toUploadFile();
   } catch (IOException e) {
   e.printStackTrace();
   }
   //上傳完成將照片寫入imageview與用戶進行交互
   mImageView.setImageBitmap(photo);
  }
  }
  break;
 }
}

關(guān)于“Android如何實現(xiàn)頭像上傳功能”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

名稱欄目:Android如何實現(xiàn)頭像上傳功能
鏈接URL:http://bm7419.com/article6/jdgoog.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站內(nèi)鏈、動態(tài)網(wǎng)站、網(wǎng)站策劃定制開發(fā)、用戶體驗、外貿(mào)網(wǎng)站建設(shè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

綿陽服務(wù)器托管