java - 通过 https ://获取 XML 数据

标签 java android xml https httpclient

我的代码适用于 http,但不适用于 https。这是我在 IOException 上调用 getMessage() 时收到的错误消息:

java.net.SocketException: 协议(protocol)不支持的地址族

这是我的代码:

 package com.evankimia;

 import java.io.IOException;
 import java.io.StringReader;
 import java.io.UnsupportedEncodingException;
 import java.net.MalformedURLException;

 import org.apache.http.HttpEntity;
 import org.apache.http.HttpResponse;
 import org.apache.http.HttpVersion;
 import org.apache.http.client.methods.HttpPost;
 import org.apache.http.conn.ClientConnectionManager;
 import org.apache.http.conn.scheme.PlainSocketFactory;
 import org.apache.http.conn.scheme.Scheme;
 import org.apache.http.conn.scheme.SchemeRegistry;
 import org.apache.http.conn.ssl.SSLSocketFactory;
 import org.apache.http.impl.client.DefaultHttpClient;
 import org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager;
 import org.apache.http.params.BasicHttpParams;
 import org.apache.http.params.HttpParams;
 import org.apache.http.params.HttpProtocolParams;
 import org.apache.http.protocol.HTTP;
 import org.apache.http.util.EntityUtils;
 import org.xmlpull.v1.XmlPullParser;
 import org.xmlpull.v1.XmlPullParserException;
 import org.xmlpull.v1.XmlPullParserFactory;

 import android.app.Activity;
 import android.os.Bundle;
 import android.util.Log;

 public class XMLParserTestActivity extends Activity {
     /** Called when the activity is first created. */
     @Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);       
    {
        Log.e("sys",""+getXML());

     }
 }

    public  String getXML(){
        String line = null;

        try {

            DefaultHttpClient httpClient = this.createHttpClient();
            HttpPost httpPost = new HttpPost("https://web2.uconn.edu/driver/old/timepoints.php?stopid=10");

            HttpResponse httpResponse = httpClient.execute(httpPost);
            HttpEntity httpEntity = httpResponse.getEntity();
            line = EntityUtils.toString(httpEntity);

        } catch (UnsupportedEncodingException e) {
            line = "<results status=\"error\"><msg>Cans't connect to server</msg></results>";
        } catch (MalformedURLException e) {
            line = "<results status=\"error\"><msg>Cand't connect to server</msg></results>";
        } catch (IOException e) {
            line = "<results status=\"error\"><msg>Can't connect to server</msg></results>";
            e.getMessage();
        }

        return line;

}

private DefaultHttpClient createHttpClient()
{
    HttpParams params = new BasicHttpParams();
    HttpProtocolParams.setVersion(params, HttpVersion.HTTP_1_1);
    HttpProtocolParams.setContentCharset(params, HTTP.DEFAULT_CONTENT_CHARSET);
    HttpProtocolParams.setUseExpectContinue(params, true);

    SchemeRegistry schReg = new SchemeRegistry();
    schReg.register(new Scheme("http", PlainSocketFactory.getSocketFactory(), 80));
    schReg.register(new Scheme("https", SSLSocketFactory.getSocketFactory(), 443));
    ClientConnectionManager conMgr = new ThreadSafeClientConnManager(params, schReg);

    return new DefaultHttpClient(conMgr, params);
}

 }

最佳答案

您列出的方法仅适用于 http。让您的程序识别 https url 并使用如下内容。

 /**
 * Initialize the HTTP/S connection (if needed)
 *
 * @param  keystoreFile  the full path of the keystore file
 * @param  keystorePass  the password for the keystore file
 */
private void initHttps(String keystoreFile, String keystorePass)
{
    // check if the URL uses HTTP/S
    if (url.toLowerCase().startsWith(HTTPS_PROTOCOL))
    {
        print("Initializing HTTP/S protocol...");
        // set the system properties needed for HTTP/S
        System.setProperty("javax.net.ssl.keyStore", keystoreFile);
        System.setProperty("javax.net.ssl.keyStorePassword", keystorePass);
        System.setProperty("javax.net.ssl.keyStoreType", "JKS");
        System.setProperty("javax.net.ssl.trustStore", keystoreFile);
        System.setProperty("javax.net.ssl.trustStorePassword", keystorePass);
        System.setProperty("javax.protocol.handler.pkgs",
            "com.sun.net.ssl.internal.www.protocol");
        //int addProvider = Security.addProvider(new       com.sun.net.ssl.internal.ssl.Provider());
        HttpsURLConnection.setDefaultHostnameVerifier(new HostnameVerifier()
        {   // fix a HTTP/S handshake issue
            public boolean verify(String hostName, SSLSession session)
            {   // Verify that the host name is acceptable 
                return true;
            }
        });
    }
}

关于java - 通过 https ://获取 XML 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7732994/

相关文章:

java - Apache 公共(public)数学 3 : always getting UnboundedSolutionException when constructing a model

android - API 级别 19 上的 grantUriPermission 中的 IllegalArgumentException

java - 无法解析方法(<lambda 表达式>)

javascript - 使用Firefox XML DOM解析XML(RSS)

java - 使用 XML Schema、DTD、RelaxNG 和 Schematron 验证 DocBook 文档

java - Map 类的 onCreate() 和 onMapReady() 函数从未运行

java - 我可以定义扩展接口(interface)的 ArrayLists 和其他数据结构吗?

java - 无法在 Eclipse 中解决导入 org.apache 错误

PHP 无法在我的 XAMPP 服务器中正确存储阿拉伯语/波斯语文本

java - 将标题行索引传递给 Apache Commons CSV