我希望List<Beans>
在 HTTP Post 请求中附加一个。
在使用 ApacheHTTPClient
时,我无法这样做。
这就是我想做的:
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
nameValuePairs.add(new BasicNameValuePair("dailySalesList",beanList));
post.setEntity(new UrlEncodedFormEntity(nameValuePairs));
但是,BasicNameValuePair 似乎只接受 2 个字符串作为参数。我希望利用它,以便可以使用字符串(用于标识和对象)来传递列表。基本上是类似于使用地图的功能。
关于如何使用 Apache 完成的任何指示HTTPClient
?