我正在尝试更新到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

08-06 21:38