Android 프로필 업로드 기능 구현

이전에 이 프로필 사진 업로드 기능 을 하 는 데 많은 시간 이 걸 렸 는데,오늘 은 제 코드 를 공유 해서 여러분 께 먼저 효과 도 를 보 여 드 리 겠 습 니 다.

먼저 사진 을 올 리 는 도구 류 를 보면 복사 가 적 게 들 어가 지 않 아 도 사용 할 수 있다.

**
 * Created by Administrator on 2016/7/28.
 *        
 */
public class UploadUtil {
 private static UploadUtil uploadUtil;
 private static final String BOUNDARY = UUID.randomUUID().toString(); //          
 private static final String PREFIX = "--";
 private static final String LINE_END = "\r
"; private static final String CONTENT_TYPE = "multipart/form-data"; // 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"; // /*** * */ public static final int UPLOAD_SUCCESS_CODE = 1; /** * */ public static final int UPLOAD_FILE_NOT_EXISTS_CODE = 2; /** * */ 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 * * @param filePath * @param fileKey <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 * * @param file * @param fileKey <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); // 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"); /** * , */ DataOutputStream dos = new DataOutputStream(conn.getOutputStream()); StringBuffer sb = null; String params = ""; /*** * */ 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 key key * 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 , 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()); /** * 200= , */ 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, " :" + result); return; } else { Log.e(TAG, "request error" + res); sendMessage(UPLOAD_SERVER_ERROR_CODE, " :code=" + res); return; } } catch (MalformedURLException e) { sendMessage(UPLOAD_SERVER_ERROR_CODE, " :error=" + e.getMessage()); e.printStackTrace(); return; } catch (IOException e) { sendMessage(UPLOAD_SERVER_ERROR_CODE, " :error=" + e.getMessage()); e.printStackTrace(); return; } } /** * * * @param responseCode * @param responseMessage */ private void sendMessage(int responseCode, String responseMessage) { onUploadProcessListener.onUploadDone(responseCode, responseMessage); } /** * , * * @author shimingzheng */ public static interface OnUploadProcessListener { /** * * * @param responseCode * @param message */ void onUploadDone(int responseCode, String message); /** * * * @param uploadSize */ void onUploadProcess(int uploadSize); /** * * * @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 * * * @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);
}
시스템 카메라 사진 으로 사진 가 져 오기

/**
 *            
 */
private void getCamera() {
 Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);

 //                      
 intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File(
  Environment.getExternalStorageDirectory(), "hand.jpg")));
 startActivityForResult(intent, CAMERA_REQUEST);
}
시스템 재단 도구 로 그림 을 재단 합 니 다.

/****
 *                  
 *     
 *
 * @param uri
 */
private void photoClip(Uri uri) {
 //             
 Intent intent = new Intent("com.android.camera.action.CROP");
 intent.setDataAndType(uri, "image/*");
 //     crop=true       Intent      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);
}
서버 업로드 방법

/**
 *         
 */
private void toUploadFile() {
 pd = ProgressDialog.show(this, "", "      ...");
 pd.show();
 String fileKey = "avatarFile";
 UploadUtil uploadUtil = UploadUtil.getInstance();
 uploadUtil.setOnUploadProcessListener(MainActivity.this); //           

 Map<String, String> params = new HashMap<String, String>();//  map  
 params.put("userId", "");
 uploadUtil.uploadFile(filepath, fileKey, "       ", params);
 Toast.makeText(this, "    ", Toast.LENGTH_LONG).show();
}
재 서버 응답 방법

/**
 *          
 */
@Override
public void onUploadDone(int responseCode, String message) {
 //      
 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) {
 //    
 Message msg = Message.obtain();
 msg.what = UPLOAD_INIT_PROCESS;
 msg.arg1 = fileSize;
}
이 방법 들 을 다시 쓰 려 면 인 터 페 이 스 를 실현 해 야 한다.

public class MainActivity extends AppCompatActivity implements View.OnClickListener, UploadUtil.OnUploadProcessListener {
onActivity Result 다시 쓰기 데이터 가 져 오기

@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;
 }
}
원본 다운로드:Android 프로필 업로드 기능 구현
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기