标签: java xml post
我需要将XML数据发送到URL。 XML数据包含在stringbuffer中。 我需要发布它并获得响应代码。
谁能告诉我怎么做?
我有一段代码,但是eclipse说它被弃用了
PostMethod postMethod = new PostMethod(URL); InputStream stream = new StringBufferInputStream(command); postMethod.setRequestBody(stream);
答案 0 :(得分:1)
Javadoc说使用setRequestEntity(RequestEntity)代替。