android網路編程之HttpUrlConnection的講解--上傳大檔案

來源:互聯網
上載者:User

標籤:

1、伺服器後台使用Servlet開發,這裡不再介紹。

2、網路開發不要忘記在設定檔中添加訪問網路的許可權

<uses-permission android:name="android.permission.INTERNET"/>

3、網路請求、處理不能在主線程中進行,一定要在子線程中進行。因為網路請求一般有1~3秒左右的延時,在主線程中進行造成主線程的停頓,對使用者體驗來說是致命的。(主線程應該只進行UI繪製,像網路請求、資源下載、各種耗時操作都應該放到子線程中)。

4、傳輸大檔案的時候會出現OOM出錯,所以我們可以設定每次傳輸串流的大小。

5、

public class FileActivity extends Activity {    private TextView mTvMsg;        private String result = null;        @Override    protected void onCreate(Bundle savedInstanceState) {        // TODO Auto-generated method stub        super.onCreate(savedInstanceState);        requestWindowFeature(Window.FEATURE_NO_TITLE);        setContentView(R.layout.activity_file);                initView();    }        private void initView(){        mTvMsg = (TextView) findViewById(R.id.tv_msg);                new Thread(fileThread).start();    }        private Thread fileThread = new Thread(){        public void run() {            HttpURLConnection connection = null;            try {                URL url = new URL("http://192.168.23.1:8080/TestProject/FileTest");                connection = (HttpURLConnection) url.openConnection();                // 設定每次傳輸的流大小,可以有效防止手機因為記憶體不足崩潰                // 此方法用於在預先不知道內容長度時啟用沒有進行內部緩衝的 HTTP請求本文的流。                connection.setChunkedStreamingMode(51200); // 128K                // 不使用緩衝                connection.setUseCaches(false);                // 佈建要求方式                connection.setRequestMethod("POST");                // 設定編碼格式                connection.setRequestProperty("Charset", "UTF-8");                // 設定容許輸出                connection.setDoOutput(true);                // 上傳檔案                FileInputStream file = new FileInputStream(Environment.getExternalStorageDirectory().getPath()                         + "/aaaaa/baidu_map.apk");                OutputStream os = connection.getOutputStream();                byte[] b = new byte[1024];                int count = 0;                while((count = file.read(b)) != -1){                    os.write(b, 0, count);                }                os.flush();                os.close();                                // 擷取返回資料                if(connection.getResponseCode() == 200){                    InputStream is = connection.getInputStream();                    result = StringStreamUtil.inputStreamToString(is);                                        Message msg = Message.obtain();                    msg.what = 0;                    fileHandler.sendMessage(msg);                }            } catch (MalformedURLException e) {                e.printStackTrace();            } catch (Exception e) {                e.printStackTrace();            } finally {                if(connection != null){                    connection.disconnect();                }            }        };    };        private Handler fileHandler = new Handler(){        public void handleMessage(android.os.Message msg) {            if(msg.what == 0 && result!=null){                mTvMsg.setText(result);            }        };    };}

6、輸出資料流OutputStream的三個方法,第二和第三個方法應該是安全的,但第一個方法可能出現錯誤。因為你沒讀1024位元組,卻寫了1024位元組,所以可能出錯。(我試了幾次是出錯的,也可能是我代碼寫錯了,但我建議大家還是不要使用第一個方法)。

    os.write(byte[] buffer);
    os.write(int arg0);
    os.write(byte[] buffer, int offset, int count);

android網路編程之HttpUrlConnection的講解--上傳大檔案

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.