我需要将XML数据发送到URL。 XML数据包含在字符串缓冲区中。
我需要发布它并获取响应代码。

谁能告诉我该怎么做?

我有一段代码,但是eclipse说不推荐使用

PostMethod postMethod = new PostMethod(URL);
InputStream stream = new StringBufferInputStream(command);
                postMethod.setRequestBody(stream);

最佳答案

Javadoc表示改用setRequestEntity(RequestEntity)

08-25 21:43