我创建了一个接受Multipart Form数据的Java适配器。现在我想从我的原生Android应用程序创建一个多部分请求。但是我无法弄清楚如何使用MobileFirst API中的WLResourceRequest类构造多部分请求。将非常感谢在这个方向上的任何示例或指针。 提前谢谢!
答案 0 :(得分:2)
您无需通过客户端的WLResourceRequest执行此操作。
IMO你应该做的是类似的事情:
// Create the request to send
final HttpPost post = new HttpPost("your-destination");
// Construct the body of the object...
...
...
// Send the request and get the response
HttpResponse response = client.execute(post);
如果您涉及安全性,您可能还想阅读以下文档(想想POST而不是GET):http://www-01.ibm.com/support/knowledgecenter/SSHS8R_7.0.0/com.ibm.worklight.dev.doc/dev/c_custom_request_to_resource_java.html?lang=en