国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android實現上傳文件功能的方法

2020-04-11 11:47:06
字體:
來源:轉載
供稿:網友

本文所述為一個Android上傳文件的源代碼,每一步實現過程都備有詳盡的注釋,思路比較清楚,學習了本例所述上傳文件代碼之后,你可以應對其它格式文件的上傳。實例中主要實現上傳文件至Server的方法,允許Input、Output,不使用Cache,使Androiod上傳文件變得輕松。

主要功能代碼如下:

package com.test;import java.io.DataOutputStream;import java.io.FileInputStream;import java.io.InputStream;import java.net.HttpURLConnection;import java.net.URL;import android.app.Activity;import android.app.AlertDialog;import android.content.DialogInterface;import android.os.Bundle;import android.view.View;import android.widget.Button;import android.widget.TextView;public class Main extends Activity {  /* 變量聲明  * newName:上傳后在服務器上的文件名稱  * uploadFile:要上傳的文件路徑  * actionUrl:服務器上對應的程序路徑 */  private String newName="image.jpg";  private String uploadFile="/data/image.jpg";  private String actionUrl="http://l27.0.0.1/upload/upload.jsp";  private TextView mText1;  private TextView mText2;  private Button mButton;  @Override  public void onCreate(Bundle savedInstanceState)  {   super.onCreate(savedInstanceState);   setContentView(R.layout.main);   mText1 = (TextView) findViewById(R.id.myText2);   mText1.setText("文件路徑:/n"+uploadFile);   mText2 = (TextView) findViewById(R.id.myText3);   mText2.setText("上傳網址:/n"+actionUrl);   /* 設置mButton的onClick事件處理 */     mButton = (Button) findViewById(R.id.myButton);   mButton.setOnClickListener(new View.OnClickListener()   {    public void onClick(View v)    {     uploadFile();    }   });  }  /* 上傳文件至Server的方法 */  private void uploadFile()  {   String end = "/r/n";   String twoHyphens = "--";   String boundary = "*****";   try   {    URL url =new URL(actionUrl);    HttpURLConnection con=(HttpURLConnection)url.openConnection();    /* 允許Input、Output,不使用Cache */    con.setDoInput(true);    con.setDoOutput(true);    con.setUseCaches(false);    /* 設置傳送的method=POST */    con.setRequestMethod("POST");    /* setRequestProperty */    con.setRequestProperty("Connection", "Keep-Alive");    con.setRequestProperty("Charset", "UTF-8");    con.setRequestProperty("Content-Type",             "multipart/form-data;boundary="+boundary);    /* 設置DataOutputStream */    DataOutputStream ds =      new DataOutputStream(con.getOutputStream());    ds.writeBytes(twoHyphens + boundary + end);    ds.writeBytes("Content-Disposition: form-data; " +           "name=/"file1/";filename=/"" +           newName +"/"" + end);    ds.writeBytes(end);      /* 取得文件的FileInputStream */    FileInputStream fStream = new FileInputStream(uploadFile);    /* 設置每次寫入1024bytes */    int bufferSize = 1024;    byte[] buffer = new byte[bufferSize];    int length = -1;    /* 從文件讀取數據至緩沖區 */    while((length = fStream.read(buffer)) != -1)    {     /* 將資料寫入DataOutputStream中 */     ds.write(buffer, 0, length);    }    ds.writeBytes(end);    ds.writeBytes(twoHyphens + boundary + twoHyphens + end);    /* close streams */    fStream.close();    ds.flush();    /* 取得Response內容 */    InputStream is = con.getInputStream();    int ch;    StringBuffer b =new StringBuffer();    while( ( ch = is.read() ) != -1 )    {     b.append( (char)ch );    }    /* 將Response顯示于Dialog */    showDialog(b.toString().trim());    /* 關閉DataOutputStream */    ds.close();   }   catch(Exception e)   {    showDialog(""+e);   }  }  /* 顯示Dialog的method */  private void showDialog(String mess)  {   new AlertDialog.Builder(Main.this).setTitle("Message")   .setMessage(mess)   .setNegativeButton("確定",new DialogInterface.OnClickListener()   {    public void onClick(DialogInterface dialog, int which)    {         }   })   .show();  }}

讀者如果覺得功能不足的話可以對代碼進行擴展與完善,使之更加符合自身的應用需求。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 永嘉县| 临澧县| 阿拉尔市| 延津县| 柯坪县| 正蓝旗| 隆子县| 安达市| 嵩明县| 大埔区| 南城县| 镶黄旗| 错那县| 太康县| 普定县| 马山县| 基隆市| 洪洞县| 麻江县| 剑阁县| 得荣县| 通海县| 樟树市| 沙洋县| 临清市| 芜湖县| 剑阁县| 北辰区| 普兰县| 寿宁县| 如东县| 黄平县| 迁西县| 漳平市| 明溪县| 星座| 湛江市| 彭山县| 黑水县| 澄城县| 烟台市|