0

インターネットにはたくさんのチュートリアルがあることは知っていますが、https を使用するのは初めてなので、それらは私の知識の範囲を超えています。ここで emmby の回答を使用しましたTrusting all certificates using HttpClient over HTTPS。しかし、サーバーに接続するクラスでさらに実装する方法がわかりません。これが私の HttpsConection クラスのコード スニペットです。

  Log.d("url", url.toString());
        HttpsURLConnection httpsConnection;

        Log.d("HTTP get", "get() called");
        try
        {
            Log.v("HttpConnection", url.toString());
            httpsConnection = (HttpsURLConnection) url.openConnection();

            if (request != null)
            {
                OutputStreamWriter wr = new OutputStreamWriter(
                        httpsConnection.getOutputStream());
                // Log.e(TAG, "created outputstream");

                wr.write(request);
                // Log.e(TAG, "request sent");
                wr.flush();
                wr.close();
            } else
            {
                Log.e("HttpConnection", "Nothing to send to server");
            }

            // Execute
            try
            {

                InputStream in = new BufferedInputStream(httpsConnection
                        .getInputStream());
                responseString = convertStreamToString(in);
                in.close();

res/raw フォルダーに *.bks ファイルがあり、そこで立ち往生しています。

4

1 に答える 1

0

これは、自己署名付きの https 接続のコードです。私にとっては問題なく動作します。

        KeyStore trustStore;
        try {
            trustStore = KeyStore.getInstance(KeyStore.getDefaultType());
            trustStore.load(null, null);
            SSLSocketFactory sf = new EasySSLSocketFactory(trustStore);
            sf.setHostnameVerifier(SSLSocketFactory.ALLOW_ALL_HOSTNAME_VERIFIER);
            BasicHttpParams params = new BasicHttpParams();
            HttpProtocolParams.setContentCharset(params, HTTP.UTF_8);
            SchemeRegistry registry = new SchemeRegistry();
            registry.register(new Scheme("http", PlainSocketFactory.getSocketFactory(), 80));
            registry.register(new Scheme("https", sf, 443));
            ClientConnectionManager ccm = new ThreadSafeClientConnManager(params, registry);
            DefaultHttpClient httpClient = new DefaultHttpClient(ccm, params);
            HttpsURLConnection.setDefaultHostnameVerifier(sf.getHostnameVerifier());
            HttpGet getRequest = new HttpGet(url);
            BasicHttpParams httpParameters = new BasicHttpParams();
            int timeoutConnection = 10000;
            HttpConnectionParams.setConnectionTimeout(httpParameters, timeoutConnection);
            int timeoutSocket = 15000;
            HttpConnectionParams.setSoTimeout(httpParameters, timeoutSocket);
            httpClient.setParams(httpParameters);
            HttpResponse getResponse = httpClient.execute(getRequest);
            final int statusCode = getResponse.getStatusLine().getStatusCode();
            if (statusCode != HttpStatus.SC_OK) 
            { 
                return null;
            }
            HttpEntity getResponseEntity = getResponse.getEntity();
            String content = EntityUtils.toString(getResponseEntity);
            InputStream is = new ByteArrayInputStream(content.getBytes("UTF-8"));
            return is;
        } catch (KeyStoreException e1) {
            e1.printStackTrace();
        } catch (ParseException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } catch (NoSuchAlgorithmException e) {
            e.printStackTrace();
        } catch (CertificateException e) {
            e.printStackTrace();
        } catch (KeyManagementException e) {
            e.printStackTrace();
        } catch (UnrecoverableKeyException e) {
            e.printStackTrace();
        }
    return null;
于 2013-02-19T14:13:56.367 に答える