1
URLからの応答を読み取っているときにJaxWSでストリームを取得するにはどうすればよいですか?私の問題は、私は500 MBのデータとしてURLレスポンスを取得することです。だから、ファイルに直接保存できるレスポンスストリームを探しています。応答ストリームString、Jaxws
final MyBean myBean = new MyBean("posted MyBean", 11);
Response response = webTarget.path("resource").request("application/xml")
.post(Entity.entity(myBean, "application/xml"));
System.out.println(response.getStatus());
final String responseEntity = response.readEntity(String.class);
System.out.println(responseEntity);