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.
我想使用带有 WebSresource.Builder 的 Jersey 客户端发布 JSONOject 或地图。
WebResource.Builder builder = res.type(mediaType); uploadResult = builder.post(ClientResponse.class, new HashMap<String, Object>());
如何以正确的方式将 JSON 传递给 POST 请求?JSON/Map 必须如何转换?
//干杯