-
Notifications
You must be signed in to change notification settings - Fork 3
postFileRequest
Jian Chang edited this page Sep 26, 2016
·
2 revisions
OkHttpUtils.postFile()
.url(url)
.file(new File(filePath)) // 待提交的文件
.mediaType(MediaType.parse("image/png"))
.callback(new StringCallback() {
@Override
public void onError(Call call, Exception e) {
// do something
}
@Override
public void onResponse(String s) {
// do something
}
})
.build()
.execute();