欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android使用post方式上傳圖片到服務(wù)器的方法

 更新時間:2016年03月09日 08:47:19   作者:nosxcy  
這篇文章主要介紹了Android使用post方式上傳圖片到服務(wù)器的方法,結(jié)合實例形式分析了Android文件傳輸?shù)南嚓P(guān)技巧,需要的朋友可以參考下

本文實例講述了Android使用post方式上傳圖片到服務(wù)器的方法。分享給大家供大家參考,具體如下:

/**
 * 上傳文件到服務(wù)器類
 * 
 * @author tom
 */
public class UploadUtil {
  private static final String TAG = "uploadFile";
  private static final int TIME_OUT = 10 * 1000; // 超時時間
  private static final String CHARSET = "utf-8"; // 設(shè)置編碼
  /**
   * Android上傳文件到服務(wù)端
   * 
   * @param file 需要上傳的文件
   * @param RequestURL 請求的rul
   * @return 返回響應(yīng)的內(nèi)容
   */
  public static String uploadFile(File file, String RequestURL) {
    String result = null;
    String BOUNDARY = UUID.randomUUID().toString(); // 邊界標(biāo)識 隨機生成
    String PREFIX = "--", LINE_END = "\r\n";
    String CONTENT_TYPE = "multipart/form-data"; // 內(nèi)容類型
    try {
      URL url = new URL(RequestURL);
      HttpURLConnection conn = (HttpURLConnection) url.openConnection();
      conn.setReadTimeout(TIME_OUT);
      conn.setConnectTimeout(TIME_OUT);
      conn.setDoInput(true); // 允許輸入流
      conn.setDoOutput(true); // 允許輸出流
      conn.setUseCaches(false); // 不允許使用緩存
      conn.setRequestMethod("POST"); // 請求方式
      conn.setRequestProperty("Charset", CHARSET); // 設(shè)置編碼
      conn.setRequestProperty("connection", "keep-alive");
      conn.setRequestProperty("Content-Type", CONTENT_TYPE + ";boundary=" + BOUNDARY);
      if (file != null) {
        /**
         * 當(dāng)文件不為空,把文件包裝并且上傳
         */
        DataOutputStream dos = new DataOutputStream(conn.getOutputStream());
        StringBuffer sb = new StringBuffer();
        sb.append(PREFIX);
        sb.append(BOUNDARY);
        sb.append(LINE_END);
        /**
         * 這里重點注意: name里面的值為服務(wù)端需要key 只有這個key 才可以得到對應(yīng)的文件
         * filename是文件的名字,包含后綴名的 比如:abc.png
         */
        sb.append("Content-Disposition: form-data; name=\"uploadfile\"; filename=\""
            + file.getName() + "\"" + LINE_END);
        sb.append("Content-Type: application/octet-stream; charset=" + CHARSET + LINE_END);
        sb.append(LINE_END);
        dos.write(sb.toString().getBytes());
        InputStream is = new FileInputStream(file);
        byte[] bytes = new byte[1024];
        int len = 0;
        while ((len = is.read(bytes)) != -1) {
          dos.write(bytes, 0, len);
        }
        is.close();
        dos.write(LINE_END.getBytes());
        byte[] end_data = (PREFIX + BOUNDARY + PREFIX + LINE_END).getBytes();
        dos.write(end_data);
        dos.flush();
        /**
         * 獲取響應(yīng)碼 200=成功 當(dāng)響應(yīng)成功,獲取響應(yīng)的流
         */
        int res = conn.getResponseCode();
        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);
        }
        result = sb1.toString();
        Log.e(TAG, "result : " + result);
        // }
        // else{
        // Log.e(TAG, "request error");
        // }
      }
    } catch (MalformedURLException e) {
      e.printStackTrace();
    } catch (IOException e) {
      e.printStackTrace();
    }
    return result;
  }
  /**
   * 通過拼接的方式構(gòu)造請求內(nèi)容,實現(xiàn)參數(shù)傳輸以及文件傳輸
   * 
   * @param url Service net address
   * @param params text content
   * @param files pictures
   * @return String result of Service response
   * @throws IOException
   */
  public static String post(String url, Map<String, String> params, Map<String, File> files)
      throws IOException {
    String BOUNDARY = java.util.UUID.randomUUID().toString();
    String PREFIX = "--", LINEND = "\r\n";
    String MULTIPART_FROM_DATA = "multipart/form-data";
    String CHARSET = "UTF-8";
    URL uri = new URL(url);
    HttpURLConnection conn = (HttpURLConnection) uri.openConnection();
    conn.setReadTimeout(10 * 1000); // 緩存的最長時間
    conn.setDoInput(true);// 允許輸入
    conn.setDoOutput(true);// 允許輸出
    conn.setUseCaches(false); // 不允許使用緩存
    conn.setRequestMethod("POST");
    conn.setRequestProperty("connection", "keep-alive");
    conn.setRequestProperty("Charsert", "UTF-8");
    conn.setRequestProperty("Content-Type", MULTIPART_FROM_DATA + ";boundary=" + BOUNDARY);
    // 首先組拼文本類型的參數(shù)
    StringBuilder sb = new StringBuilder();
    for (Map.Entry<String, String> entry : params.entrySet()) {
      sb.append(PREFIX);
      sb.append(BOUNDARY);
      sb.append(LINEND);
      sb.append("Content-Disposition: form-data; name=\"" + entry.getKey() + "\"" + LINEND);
      sb.append("Content-Type: text/plain; charset=" + CHARSET + LINEND);
      sb.append("Content-Transfer-Encoding: 8bit" + LINEND);
      sb.append(LINEND);
      sb.append(entry.getValue());
      sb.append(LINEND);
    }
    DataOutputStream outStream = new DataOutputStream(conn.getOutputStream());
    outStream.write(sb.toString().getBytes());
    // 發(fā)送文件數(shù)據(jù)
    if (files != null)
      for (Map.Entry<String, File> file : files.entrySet()) {
        StringBuilder sb1 = new StringBuilder();
        sb1.append(PREFIX);
        sb1.append(BOUNDARY);
        sb1.append(LINEND);
        sb1.append("Content-Disposition: form-data; name=\"uploadfile\"; filename=\""
            + file.getValue().getName() + "\"" + LINEND);
        sb1.append("Content-Type: application/octet-stream; charset=" + CHARSET + LINEND);
        sb1.append(LINEND);
        outStream.write(sb1.toString().getBytes());
        InputStream is = new FileInputStream(file.getValue());
        byte[] buffer = new byte[1024];
        int len = 0;
        while ((len = is.read(buffer)) != -1) {
          outStream.write(buffer, 0, len);
        }
        is.close();
        outStream.write(LINEND.getBytes());
      }
    // 請求結(jié)束標(biāo)志
    byte[] end_data = (PREFIX + BOUNDARY + PREFIX + LINEND).getBytes();
    outStream.write(end_data);
    outStream.flush();
    // 得到響應(yīng)碼
    int res = conn.getResponseCode();
    InputStream in = conn.getInputStream();
    StringBuilder sb2 = new StringBuilder();
    if (res == 200) {
      int ch;
      while ((ch = in.read()) != -1) {
        sb2.append((char) ch);
      }
    }
    outStream.close();
    conn.disconnect();
    return sb2.toString();
  }
}

示例調(diào)用第二種方式上傳:

final Map<String, String> params = new HashMap<String, String>();
params.put("send_userId", String.valueOf(id));
params.put("send_email", address);
params.put("send_name", name);
params.put("receive_email", emails);
final Map<String, File> files = new HashMap<String, File>();
files.put("uploadfile", file);
final String request = UploadUtil.post(requestURL, params, files);

更多關(guān)于Android相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Android調(diào)試技巧與常見問題解決方法匯總》、《Android開發(fā)入門與進階教程》、《Android多媒體操作技巧匯總(音頻,視頻,錄音等)》、《Android基本組件用法總結(jié)》、《Android視圖View技巧總結(jié)》、《Android布局layout技巧總結(jié)》及《Android控件用法總結(jié)

希望本文所述對大家Android程序設(shè)計有所幫助。

相關(guān)文章

  • android實現(xiàn)點擊按鈕控制圖片切換

    android實現(xiàn)點擊按鈕控制圖片切換

    這篇文章主要為大家詳細介紹了android實現(xiàn)點擊按鈕控制圖片切換,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2021-01-01
  • Kotlin掛起函數(shù)的詳細介紹

    Kotlin掛起函數(shù)的詳細介紹

    掛起函數(shù)用狀態(tài)機以掛起點將協(xié)程的運算邏輯拆分成不同的片段,每次執(zhí)行協(xié)程運行不同的邏輯片段,由此可以知道協(xié)程是運行在線程中的,線程的并發(fā)處理方式也可以用在協(xié)程上
    2022-09-09
  • Android 百分比布局詳解及實例代碼

    Android 百分比布局詳解及實例代碼

    這篇文章主要介紹了Android 百分比布局詳解及實例代碼的相關(guān)資料,這里附有代碼實例幫助大家學(xué)習(xí)參考,如何實現(xiàn)百分比布局,需要的朋友可以參考下
    2016-11-11
  • Android Lottie實現(xiàn)中秋月餅變明月動畫特效實例

    Android Lottie實現(xiàn)中秋月餅變明月動畫特效實例

    Lottie是Airbnb開源的一個支持 Android、iOS 以及 ReactNative,利用json文件的方式快速實現(xiàn)動畫效果的庫,下面這篇文章主要給大家介紹了關(guān)于Android Lottie實現(xiàn)中秋月餅變明月動畫特效的相關(guān)資料,需要的朋友可以參考下
    2021-09-09
  • Android設(shè)計模式系列之單例模式

    Android設(shè)計模式系列之單例模式

    單例模式,可以說是GOF的23種設(shè)計模式中最簡單的一個。接下來通過本文給大家實例講解android設(shè)計模式系列之單例模式的相關(guān)知識,感興趣的朋友一起看看吧
    2016-09-09
  • Android中ContextMenu用法實例

    Android中ContextMenu用法實例

    這篇文章主要介紹了Android中ContextMenu用法,實例分析了Android上下文菜單ContextMenu的相關(guān)使用技巧,具有一定參考借鑒價值,需要的朋友可以參考下
    2015-07-07
  • Android FaceDetector實現(xiàn)人臉檢測功能

    Android FaceDetector實現(xiàn)人臉檢測功能

    這篇文章主要為大家詳細介紹了Android FaceDetector實現(xiàn)人臉檢測功能,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-05-05
  • Android開發(fā)之在xml中設(shè)置自定義屬性的方法

    Android開發(fā)之在xml中設(shè)置自定義屬性的方法

    下面小編就為大家分享一篇Android開發(fā)之在xml中設(shè)置自定義屬性的方法,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2018-01-01
  • Kotlin中的handler如何避免內(nèi)存泄漏詳解

    Kotlin中的handler如何避免內(nèi)存泄漏詳解

    Handler,我們已經(jīng)相當(dāng)熟悉了,而且經(jīng)常用得不亦樂乎,但就是因為太熟悉了,才會偶爾被它反捅一刀,血流不止,下面這篇文章主要給大家介紹了關(guān)于Kotlin中handler如何避免內(nèi)存泄漏的相關(guān)資料,需要的朋友可以參考下。
    2017-12-12
  • Android實戰(zhàn)教程第五篇之一鍵鎖屏應(yīng)用

    Android實戰(zhàn)教程第五篇之一鍵鎖屏應(yīng)用

    這篇文章主要為大家詳細介紹了Android實戰(zhàn)教程第五篇之一鍵鎖屏應(yīng)用,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2016-11-11

最新評論