实现发送xml格式的请求

6 篇文章 0 订阅

还是map的参数比较好set一点。所以我通过把传入的map参数转为xml再发送请求

请求封装:

public static Map HttpRequest(String urlStr , Map<String,String> map) {
        String xmlInfo = UnionPayKit.mapToXml(map);
        System.out.println("请求xml:\n" + xmlInfo + "\n");
        URL url = null;
        StringBuffer sb = new StringBuffer();
        try {
            url = new URL(urlStr);
            URLConnection conn = null;
            conn = url.openConnection();
            conn.setUseCaches(false);
            conn.setDoInput(true);
            conn.setDoOutput(true);
            conn.setRequestProperty("Content-Length", Integer.toString(xmlInfo.length()));
            conn.setRequestProperty("Content-Type", "text/xml; charset=utf-8");
            OutputStream ops = conn.getOutputStream();
            OutputStreamWriter osw = new OutputStreamWriter(ops, "utf-8");
            osw.write(xmlInfo);
            osw.flush();
            osw.close();

            //发送成功后,获取服务器的响应xml串:

            String line = "";
            InputStream is = conn.getInputStream();
            BufferedReader br = new BufferedReader(new InputStreamReader(is,"utf-8"));//三层包装
            while ((line = br.readLine()) != null) {
                sb.append(line + "\r\n");
            }
            System.out.println("请求响应:\n"+sb.toString());
        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return UnionPayKit.xmlStrToMap(sb.toString());
    }
mapToXml封装:
/**
     * map转xml
     */
    public static String mapToXml(Map<String, String> data){
        DocumentBuilderFactory documentBuilderFactory = DocumentBuilderFactory.newInstance();
        DocumentBuilder documentBuilder = null;
        String output = "";
        try {
            documentBuilder = documentBuilderFactory.newDocumentBuilder();
            org.w3c.dom.Document document = documentBuilder.newDocument();
            org.w3c.dom.Element root = document.createElement("xml");
            document.appendChild(root);
            for (String key : data.keySet()) {
                String value = data.get(key);
                if (value == null) {
                    value = "";
                }
                value = value.trim();
                org.w3c.dom.Element filed = document.createElement(key);
                filed.appendChild(document.createTextNode(value));
                root.appendChild(filed);
            }
            TransformerFactory tf = TransformerFactory.newInstance();
            Transformer transformer = tf.newTransformer();
            DOMSource source = new DOMSource(document);
            transformer.setOutputProperty(OutputKeys.ENCODING, "UTF-8");
            transformer.setOutputProperty(OutputKeys.VERSION, "1.0");
        transformer.setOutputProperty(OutputKeys.INDENT, "yes");
            StringWriter writer = new StringWriter();
            StreamResult result = new StreamResult(writer);
            transformer.transform(source, result);
            output = writer.getBuffer().toString(); //.replaceAll("\n|\r", "");
            writer.close();
        } catch (Exception e) {
            e.printStackTrace();
        }

        return output;
    }

 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值