如何在没有HttpEntity的情况下使用Volley发送多部分请求?

时间:2015-08-19 10:25:06

标签: android android-volley httpentity

我正在按照How to multipart data using Android Volley使用截击发送多部分请求的解决方案。但是,自SDK 22以来,httpsntity已被弃用,并且已在SDK 23上完全删除。

解决方案是使用openConnection,就像HttpEntity is deprecated on Android now, what's the alternative?一样,但我不知道如何将它用于多部分请求

1 个答案:

答案 0 :(得分:1)

Use following in your build.gradle

android {
    useLibrary 'org.apache.http.legacy'
}

See http://developer.android.com/preview/behavior-changes.html#behavior-apache-http-client