我正在尝试更新到com.loopj.android:android-async-http
的最新版本(1.4.9),其中org.apache.http
被cz.msebera.android.httpclient
替换。
目前我使用:
StringEntity entity = new StringEntity("some data");
client.post(static_context, getAbsoluteUrl(url), entity, "application/json", responseHandler);
所以我想我可以把它投射到HttpEntity
,但事实并非如此。
Caused by: java.lang.ClassCastException: org.apache.http.entity.StringEntity cannot be cast to cz.msebera.android.httpclient.HttpEntity
所以我的问题是,我如何用我的数据创建HttpEntity
,或者有更好的方法用正文中的数据创建发布请求吗?
看起来您导入了错误的StringEntity
类。
假设cz.msebera.android.httpclient
仍然有一个StringEntity
,您应该能够
import cz.msebera.android.httpclient.entity.StringEntity
而不是
import org.apache.http.entity.StringEntity