Java restful xml_如何为restful Web服务格式化xml输入并调用服务

嗨所有我使用restFul Web服务服务器端代码公开服务

@RequestMapping(value = "/getPerson",method = RequestMethod.POST)public ModelAndView getPerson(@RequestParam("inputXml")String inputXml){

返回new ModelAndView("userXmlView",BindingResult.MODEL_KEY_PREFIX String.class,"Test"); }

客户端实施是:

URL oracle = new URL("http://localhost:8081/testWeb/restServices/getPerson?inputXml=input");

System.out.println("Oracle URl is "+oracle);

HttpURLConnection connection = (HttpURLConnection)oracle.openConnection();

connection.setDoOutput(true);

connection.setRequestProperty("Content-type", "application/xml; charset:ISO-8859-1");

connection.setRequestMethod("POST");

BufferedReader in = new BufferedReader(new InputStreamReader(

connection.getInputStream()));

String inputLine;

while ((inputLine = in.readLine()) != null)

System.out.println(inputLine);

in.close();

我能够使用URL http://localhost:8081/testWeb/restServices/getPerson?inputXml="input" 访问该服务实际上我的要求是,我需要传递xml字符串作为这样的输入

http://localhost:8081/testWeb/restServices/getPerson?inputXml="<?xml %20version="1.0"%20encoding="UTF-8"%20standalone="yes"?>WI1Widget%20Number%20One300.0"

请帮我找到解决方案

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值