您好,登錄后才能下訂單哦!
上傳文件的核心功能主要是在UploadCommand.java中實(shí)現(xiàn)
使用步驟:
1 創(chuàng)建UploadCommand的構(gòu)建類Builder
UploadCommand.Builder builder = new UploadCommand.Builder();
2 通過(guò)構(gòu)建類設(shè)置UploadCommand的各種屬性
builder.domain("上傳地址的域名") .path("上傳接口") .contentType("請(qǐng)求頭文件的Content-type") .mediaType(Params.Body.MEDIA_TYPE_VIDEO) .file("上傳文件的絕對(duì)路徑") .transferListener(new SimpleRequestBody.ProgressListener() { // 上傳進(jìn)度的監(jiān)聽器 @Override public void onDataTransferred(long transferred, long contentLength) { Log.e("TAG", "already transfer " + 100 * ((double) transferred / (double) contentLength)); } });
3 通過(guò)構(gòu)建類構(gòu)造UploadCommand對(duì)象,并啟動(dòng)
UploadCommand uploadCommand = builder.build(); uploadCommand.start(this, new AppResultReceiver(new Handler(), MainActivity.this));
注意:以上代碼需要將MainActivity實(shí)現(xiàn)AppResultReceiver.ResultListener接口
4 在onResultSuccess方法中,區(qū)分是否是UploadCommand,并解析數(shù)據(jù)
@Override public void onResultSuccess(Bundle resultData) { if (null != resultData) { if (UploadCommand.UPLOAD_CMD.equals( resultData.getString(Params.CommandMessage.CMD_CODE))) { Logger.e("JIANG", "上傳成功"); } } }
框架github地址: SimpleCommand框架
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。