Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 HTTP POST 请求中传递对象列表,比如驱动程序。而 NameValuePair 只接受字符串。如何通过 HTTP POST 请求传递它?
尝试
StringEntity ss= new StringEntity(yourObj.toString()); // Set HTTP parameters httpPost.setEntity(se);
我想它会对你有所帮助。
我认为这篇文章会对你有所帮助
使用 HTTP 客户端将序列化对象从 Android 发送到 servlet
他们建议使用 JSON 或 XML