您好,登錄后才能下訂單哦!
開發(fā)android手機(jī)客戶端,常常會(huì)需要上傳文件到服務(wù)器,比如:你手機(jī)里的照片。
使用okhttp會(huì)是一個(gè)很好的選擇。它使用很簡單,而且運(yùn)行效率也很高。
首先,在 app/build.gradle 的 dependencies 增加 implementation 'com.squareup.okhttp3:okhttp:3.8.1' 可以參照如下代碼
apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' android { compileSdkVersion 26 defaultConfig { applicationId "com.cofox.mykt.myweather" minSdkVersion 19 targetSdkVersion 26 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } sourceSets { main { res.srcDirs = [ 'src/main/res/layout/menufunction', 'src/main/res' ] } } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" implementation 'com.android.support:appcompat-v7:26.1.0' implementation 'com.android.support.constraint:constraint-layout:1.0.2' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.1' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' implementation 'org.jetbrains.anko:anko-sdk19:0.10.3' implementation 'org.jetbrains.anko:anko-support-v4:0.10.3' implementation 'org.jetbrains.anko:anko-appcompat-v7:0.10.3' implementation 'com.google.code.gson:gson:2.7' implementation 'com.android.support:percent:26.1.0' implementation 'com.squareup.okhttp3:okhttp:3.8.1' }
在界面上添加一個(gè)按鈕,以及一個(gè)可滾動(dòng)顯示返回值的文字組件。
<Button android:id="@+id/btnOkHttpUploadFilePost" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:text="OkHttp上傳文件(POST)" android:textAllCaps="false" /> <ScrollView android:layout_width="match_parent" android:layout_height="wrap_content"> <TextView android:id="@+id/ttviewResponse" android:layout_width="match_parent" android:layout_height="match_parent" /> </ScrollView>
因?yàn)橹皇腔竟δ軐?shí)現(xiàn),所以采用發(fā)送手機(jī)上指定的一個(gè)文件就達(dá)成目的。
在代碼編輯區(qū),首先添加一個(gè)默認(rèn)的服務(wù)器地址。
//設(shè)置訪問服務(wù)端IP var serverIp = "192.168.1.105"
在onCreate方法內(nèi)添加按鈕操作代碼
//post方式上傳文件(sd卡跟路徑image.png文件) btnOkHttpUploadFilePost.setOnClickListener { Thread { try { val url = "http://" + serverIp + "/upload" val file = File("/sdcard/image.png") val fileBody = RequestBody.create(MediaType.parse("application/octet-stream"), file) val requestBody = MultipartBody.Builder() .setType(MultipartBody.FORM) .addFormDataPart("uploadfile", "image.png", fileBody) .build() val request = Request.Builder() .url(url) .post(requestBody) .build() val httpBuilder = OkHttpClient.Builder() val okHttpClient = httpBuilder .connectTimeout(10, java.util.concurrent.TimeUnit.SECONDS) .writeTimeout(15, java.util.concurrent.TimeUnit.SECONDS) .build() val response = okHttpClient.newCall(request).execute() val responseStr = response.body()?.string() runOnUiThread { ttviewResponse.text = responseStr } } catch (e: Exception) { } }.start() }
這段代碼中的 val url 值是根據(jù)服務(wù)端的要求設(shè)置的。
val file 是手機(jī)上圖片文件的位置。
val requestBody 中 .addFormDataPart("uploadfile", "image.png", fileBody) 的 uploadfile 也是服務(wù)端要求的必要鍵。
最后的 responseStr 是上傳操作之后,獲取服務(wù)端的信息反饋。
總結(jié)
以上所述是小編給大家介紹的android 開發(fā)中使用okhttp上傳文件到服務(wù)器,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)億速云網(wǎng)站的支持!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。