`

Java发HTTP POST请求(内容为xml格式)

    博客分类:
  • xml
 
阅读更多

 今天在给平台用户提供http简单接口的时候,顺便写了个调用的Java类供他参考。
     服务器地址:http://5.0.217.50:17001/VideoSend
     服务器提供的是xml格式的http接口,接口定义如下:
<!--视频点送: videoSend-->
<videoSend>
    <header>
        <sid>%s</sid> 
        <type>service</type> 
    </header>
    <service name="videoSend">
    <fromNum>%s</fromNum>     
    <toNum>%s</toNum>                   <!--需要接通的用户的电话号码 -->
    <videoPath>%s</videoPath>           <!--视频文件路径 -->
    <chargeNumber>%s</chargeNumber>     <!--计费号码 -->
    </service>
</videoSend>


<!--视频点送返回结果: videoSendResult-->
<videoSend>
    <header>
    <sid>%s</sid> 
    <type>service</type> 
    </header>
    <service name="videoSendResult">
    rescode>%s</rescode>                 <!--0000:视频点送成功,0001:请求参数信息错误, 0002:接通用户失败-->
    </service>
</videoSend>

对应调用端的Java代码(只是个demo,参数都暂时写死了)如下:

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;

public class HttpPostTest {
    void testPost(String urlStr) {
        try {
            URL url = new URL(urlStr);
            URLConnection con = url.openConnection();
            con.setDoOutput(true);
            con.setRequestProperty("Pragma:", "no-cache");
            con.setRequestProperty("Cache-Control", "no-cache");
            con.setRequestProperty("Content-Type", "text/xml");

            OutputStreamWriter out = new OutputStreamWriter(con
                    .getOutputStream());    
            String xmlInfo = getXmlInfo();
            System.out.println("urlStr=" + urlStr);
            System.out.println("xmlInfo=" + xmlInfo);
            out.write(new String(xmlInfo.getBytes("ISO-8859-1")));
            out.flush();
            out.close();
            BufferedReader br = new BufferedReader(new InputStreamReader(con
                    .getInputStream()));
            String line = "";
            for (line = br.readLine(); line != null; line = br.readLine()) {
                System.out.println(line);
            }
        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    private String getXmlInfo() {
        StringBuilder sb = new StringBuilder();
        sb.append("<videoSend>");
        sb.append("    <header>");
        sb.append("        <sid>1</sid>");
        sb.append("        <type>service</type>");
        sb.append("    </header>");
        sb.append("    <service name=\"videoSend\">");
        sb.append("        <fromNum>0000021000011001</fromNum>");
        sb.append("           <toNum>33647405</toNum>");
        sb.append("        <videoPath>mnt/5.0.217.50/resources/80009.mov</videoPath>");
        sb.append("        <chargeNumber>0000021000011001</chargeNumber>");
        sb.append("    </service>");
        sb.append("</videoSend>");
        return sb.toString();
    }

    public static void main(String[] args) {
        String url = "http://5.0.217.50:17001/VideoSend";
        new HttpPostTest().testPost(url);
    }
}

 2 XML传输

二、客户端代码

通过Http Post Xml传递数据,客户端一般是通过URL建立到服务端的连接,向服务端发送xml数据,然后获取服务端的响应并进行解析:

Java代码
  1. String xmlString = "<?xml version='1.0' encoding='gb2312'?>"  
  2.                       + "<Req>"  
  3.                       + "<EventContentReq>"  
  4.                       + "<EventID>101</EventID >"  
  5.                       + "</EventContentReq>"  
  6.                       + "</Req>";   
  7.   
  8. byte[] xmlData = xmlString.getBytes();   
  9.   
  10. String urlStr = "http://124.128.62.164:7001/FetchTaskDataServlet";   
  11.   
  12. DataInputStream input = null;   
  13.   
  14. java.io.ByteArrayOutputStream out = null;   
  15.   
  16. try{   
  17.   
  18.        //获得到位置服务的链接   
  19.   
  20.         URL url = new URL(urlStr);   
  21.   
  22.         URLConnection urlCon = url.openConnection();   
  23.   
  24.         urlCon.setDoOutput(true);   
  25.   
  26.         urlCon.setDoInput(true);   
  27.   
  28.         urlCon.setUseCaches(false);   
  29.   
  30.        //将xml数据发送到位置服务   
  31.   
  32.         urlCon.setRequestProperty("Content-Type""text/xml");   
  33.   
  34.         urlCon.setRequestProperty("Content-length",String.valueOf(xmlData.length));   
  35.   
  36.         DataOutputStream printout = new DataOutputStream(urlCon.getOutputStream());   
  37.   
  38.         printout.write(xmlData);   
  39.   
  40.         printout.flush();   
  41.   
  42.         printout.close();   
  43.   
  44.         input = new DataInputStream(urlCon.getInputStream());   
  45.   
  46.        byte[] rResult;   
  47.   
  48.         out = new java.io.ByteArrayOutputStream();   
  49.   
  50.        byte[] bufferByte = newbyte[256];   
  51.   
  52.        int l = -1;   
  53.   
  54.        int downloadSize = 0;   
  55.   
  56.        while ((l = input.read(bufferByte)) > -1) {   
  57.   
  58.             downloadSize += l;   
  59.   
  60.             out.write(bufferByte, 0, l);   
  61.   
  62.             out.flush();   
  63.   
  64.         }   
  65.   
  66.         rResult = out.toByteArray();   
  67.   
  68.         DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();   
  69.   
  70.         DocumentBuilder db = dbf.newDocumentBuilder();   
  71.   
  72.         Document d = db.parse(new ByteArrayInputStream(rResult));   
  73.   
  74.         String TaskAddr = d.getElementsByTagName("TaskAddr").item(0).getFirstChild().getNodeValue();   
  75.   
  76.         System.out.println("TaskAddr:"+TaskAddr);   
  77.   
  78. }   
  79.   
  80. catch(Exception e){   
  81.   
  82.         e.printStackTrace();   
  83.   
  84. }   
  85.   
  86. finally {   
  87.   
  88.        try {   
  89.   
  90.                out.close();   
  91.   
  92.                input.close();   
  93.   
  94.         }   
  95.   
  96.        catch (Exception ex) {   
  97.   
  98.         }   
  99.   
  100. }  
  101. 三、服务端代码

    服务端一般首先获取客户端发来的xml数据,进行解析,并将响应返回给客户端:

    Java代码
    1. try{   
    2.   
    3. //解析对方发来的xml数据,获得EventID节点的值   
    4.   
    5.         DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();   
    6.   
    7.         DocumentBuilder db = dbf.newDocumentBuilder();   
    8.   
    9.         Document d = db.parse(request.getInputStream());   
    10.   
    11.         String evtid = d.getElementsByTagName("EventID").item(0).getFirstChild().getNodeValue();   
    12.   
    13. //                    System.out.println("evtid" + evtid);   
    14.   
    15.        //根据evtid查找任务,生成xml字符串   
    16.   
    17.         UfgovDBUtil dbUtil = new UfgovDBUtil();   
    18.   
    19.         String xmlString = dbUtil.fetchTaskData(evtid);   
    20.   
    21. //                    System.out.println("returned xmlString:" + xmlString);   
    22.   
    23.        //把xml字符串写入响应   
    24.   
    25.        byte[] xmlData = xmlString.getBytes();   
    26.   
    27.         response.setContentType("text/xml");   
    28.   
    29.         response.setContentLength(xmlData.length);   
    30.   
    31.         ServletOutputStream os = response.getOutputStream();   
    32.   
    33.         os.write(xmlData);   
    34.   
    35.         os.flush();   
    36.   
    37.         os.close();   
    38.   
    39. }   
    40.   
    41. catch(Exception e){   
    42.   
    43.         e.printStackTrace();   
    44.   
    45. }  
分享到:
评论
3 楼 953434367 2016-11-27  
UfgovDBUtil 是什么类
2 楼 operating...mydream 2015-04-10  
第二个XML的 如果XML内容包含了中文会报错,是不是要转码呢??
1 楼 AnnaBelle35 2014-09-10  
求这个UfgovDBUtil 类

相关推荐

Global site tag (gtag.js) - Google Analytics