日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

实现发送xml格式的请求

發(fā)布時間:2024/3/13 编程问答 36 豆豆
生活随笔 收集整理的這篇文章主要介紹了 实现发送xml格式的请求 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

還是map的參數(shù)比較好set一點(diǎn)。所以我通過把傳入的map參數(shù)轉(zhuǎn)為xml再發(fā)送請求

請求封裝:

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();//發(fā)送成功后,獲取服務(wù)器的響應(yīng)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("請求響應(yīng):\n"+sb.toString());} catch (MalformedURLException e) {e.printStackTrace();} catch (IOException e) {e.printStackTrace();}return UnionPayKit.xmlStrToMap(sb.toString());} mapToXml封裝: /*** map轉(zhuǎn)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;}

?

總結(jié)

以上是生活随笔為你收集整理的实现发送xml格式的请求的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。