0
在第3行它說無法解決創建,這有什麼問題?這應該工作。Retrofit2 requestbody給出錯誤
private Uri filePath;
File file = new File(filePath.getPath());
RequestBody rbody = RequestBody.create(MediaType.parse("image/*"), file);
在第3行它說無法解決創建,這有什麼問題?這應該工作。Retrofit2 requestbody給出錯誤
private Uri filePath;
File file = new File(filePath.getPath());
RequestBody rbody = RequestBody.create(MediaType.parse("image/*"), file);
是的它的工作,我必須在這種情況下使用okhttp3。我正在使用okhttp 2
您是否導入了okhttp3.RequestBody?或者其他一些'RequestBody'類? –
import com.squareup.okhttp.RequestBody; –
是的它的工作,我必須在這種情況下使用okhttp3。我正在使用okhttp 2。 –