8

我查看了以下链接,但似乎没有什么具体的。 Android 中的安全 HTTP Post 这个不再起作用了,我已经测试过了,其他人的评论说它不起作用。

我还检查了这个:DefaultHttpClient、证书、Https 和发布问题!这似乎可行,但博主只是让你悬而未决。更多分步说明会有所帮助。我设法获得了我的证书,因为我无法完成他的第二步。

http://www.makeurownrules.com/secure-rest-web-service-mobile-application-android.html这个看起来不错,但是我在最后一步又松了作者:“回到我们原来的rest客户端代码。” 他也到处都是,我不知道他在使用哪些图书馆。他没有解释他的代码

RestTemplate restTemplate = new RestTemplate();

这是另一个悬念。因为该课程尚未提供。因此,如果有人可以详细解释如何进行 HTTPS 发布请求,那就太好了。我确实需要接受自签名证书。

4

2 回答 2

12

我希望它会有所帮助。这是我使用的代码并且工作得很好。

private HttpClient 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);
}

然后像这样创建一个 HttpClient: -

HttpClient httpClient = createHttpClient();

并将其与 HttpPost 一起使用。

干杯!!

编辑

而且我没有在我的代码中使用 RestTemplate。我提出了一个简单的发布请求。如果您需要更多帮助,请告诉我。好像我最近做了一些类似于你正在寻找的东西。

于 2012-07-16T12:58:58.067 回答
0

这是我用于 HTTPS Post 的方法,在这里我使用了自定义证书,所以用你自己的更改 HttpClient 分配......

public String postData(String url, String xmlQuery) {



        final String urlStr = url;
        final String xmlStr = xmlQuery;
        final StringBuilder sb  = new StringBuilder();



        Thread t1 = new Thread(new Runnable() {

            public void run() {

                HttpClient httpclient = MySSLSocketFactory.getNewHttpClient();

                HttpPost httppost = new HttpPost(urlStr);


                try {

                    List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(
                            1);
                    nameValuePairs.add(new BasicNameValuePair("xml", xmlStr));

                    httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));

                    HttpResponse response = httpclient.execute(httppost);

                    Log.d("Vivek", response.toString());

                    HttpEntity entity = response.getEntity();
                    InputStream i = entity.getContent();

                    Log.d("Vivek", i.toString());
                    InputStreamReader isr = new InputStreamReader(i);

                    BufferedReader br = new BufferedReader(isr);

                    String s = null;


                    while ((s = br.readLine()) != null) {

                        Log.d("YumZing", s);
                        sb.append(s);
                    }


                    Log.d("Check Now",sb+"");




                } catch (ClientProtocolException e) {

                    e.printStackTrace();
                } catch (IOException e) {
                    e.printStackTrace();
                } /*
                 * catch (ParserConfigurationException e) { // TODO
                 * Auto-generated catch block e.printStackTrace(); } catch
                 * (SAXException e) { // TODO Auto-generated catch block
                 * e.printStackTrace(); }
                 */
            }

        });

        t1.start();
        try {
            t1.join();
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }


        System.out.println("Getting from Post Data Method "+sb.toString());

        return sb.toString();
    }
于 2012-07-16T12:42:28.307 回答