通过Java中的POST方法发送Xml字符串 [英] Send Xml string through POST method in java

查看:492
本文介绍了通过Java中的POST方法发送Xml字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想通过POST方法将xml字符串传递给URL.

I want to pass an xml string through POST method to an URL.

我尝试了以下代码段,但未返回任何内容

I tried below snippet but it doesn't return anything

disableCertificateValidation();
String url = "https://..url";   //https

Properties sysProps = System.getProperties();
sysProps.put("proxySet", "true");
sysProps.put("proxyHost", "1.2.3.4");
sysProps.put("proxyPort", "80");

Authenticator authenticator = new Authenticator() {
    public PasswordAuthentication getPasswordAuthentication() {
        return (new PasswordAuthentication("userid",
                "password".toCharArray()));
    }
};
Authenticator.setDefault(authenticator);


 String xml = ---xml string;            


URL urll;
HttpURLConnection connection = null;
try {
    // Create connection
    urll = new URL(url);
    connection = (HttpURLConnection) urll.openConnection();
    connection.setRequestMethod("POST");
    connection.setRequestProperty("Content-Type",
            "application/x-www-form-urlencoded");

    connection.setRequestProperty("Content-Length", ""
            + Integer.toString(xml.getBytes().length));
    connection.setRequestProperty("Content-Language", "en-US");

    connection.setUseCaches(false);
    connection.setDoInput(true);
    connection.setDoOutput(true);

    // Send request
    DataOutputStream wr = new DataOutputStream(connection
            .getOutputStream());
    wr.writeBytes(xml);
    wr.flush();
    wr.close();

    // Get Response
    InputStream is = connection.getInputStream();
    BufferedReader rd = new BufferedReader(new InputStreamReader(is));
    String line;
    StringBuffer response = new StringBuffer();
    while ((line = rd.readLine()) != null) {
        response.append(line);
        response.append('\r');
    }
    rd.close();
    System.out.println("response.toString();"+response.toString());


} catch (Exception e) {

    e.printStackTrace();


} finally {

    if (connection != null) {
        connection.disconnect();
    }
}

但是当我尝试通过jsp发布它时,我会从url获得正确的响应.

But when I try to post it through jsp I get the proper response from the url.

<script type="text/javascript">
function set(){
        document.getElementById("eXml").value=---xml string
    document.getElementById("textt").value=document.getElementById("eXml").value;
    alert(document.getElementById("eXml").value);
    document.getElementById("myForm").action="https---" //https url;
        document.getElementById("myForm").submit();
}
</script>
<body>
<form method="POST" id="myForm">
<input type="submit" name="send" onclick="set()">
<input type="text" id="textt" value='test'>
<input type="hidden" name="eXml" id="eXml"> 

推荐答案

将其发送为参数:使用 Apache HttpClient

Send it as parameter: Using Apache HttpClient

    String url = "https://yoururl.com"; 

    HttpClient client = new DefaultHttpClient();
    HttpPost post = new HttpPost(url);

    // add header
    post.setHeader("User-Agent", USER_AGENT);

    List<NameValuePair> urlParameters = new ArrayList<NameValuePair>();
    urlParameters.add(new BasicNameValuePair("xml", xmlString));

    post.setEntity(new UrlEncodedFormEntity(urlParameters));

    HttpResponse response = client.execute(post);
    System.out.println("\nSending 'POST' request to URL : " + url);
    System.out.println("Post parameters : " + post.getEntity());
    System.out.println("Response Code : " + 
                                response.getStatusLine().getStatusCode());

    BufferedReader rd = new BufferedReader(
                    new InputStreamReader(response.getEntity().getContent()));

    StringBuffer result = new StringBuffer();
    String line = "";
    while ((line = rd.readLine()) != null) {
        result.append(line);
    }

    System.out.println(result.toString());

这篇关于通过Java中的POST方法发送Xml字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆