Android https obtains data by loading the pfx Certificate

Source: Internet
Author: User

Let's go directly to the code. After several days of research, we can get it done ......

public static final String CLIENT_KET_PASSWORD = "Ku6OpqKDfN4=305790"; //public static String getNewHttpClient(String url){try{// KeyStore trustStore = KeyStore.getInstance("PKCS12", "BC");// trustStore// .load(PcPostApplication.getInstance().getAssets()// .open("abc.pfx"), CLIENT_KET_PASSWORD.toCharArray());SSLSocketFactory sf =new SSLSocketFactoryEx(AppConfig.mKeyStore,AppConfig.CERTFILE_PASSWORD.toCharArray());sf.setHostnameVerifier(SSLSocketFactory.ALLOW_ALL_HOSTNAME_VERIFIER);HttpParams params = new BasicHttpParams();HttpProtocolParams.setVersion(params, HttpVersion.HTTP_1_1);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));HttpClient client = null;String msg = "";try{ClientConnectionManager ccm =new ThreadSafeClientConnManager(params, registry);client = new DefaultHttpClient(ccm, params);HttpGet hg = new HttpGet(url);HttpResponse response = client.execute(hg);HttpEntity entity = response.getEntity();if (entity != null){InputStream instreams = entity.getContent();msg = convertStreamToString(instreams);}return msg;}catch (Exception e){// TODO Auto-generated catch blocke.printStackTrace();}}catch (Exception e){e.printStackTrace();}return "";}public static String convertStreamToString(InputStream is){BufferedReader reader = new BufferedReader(new InputStreamReader(is));StringBuilder sb = new StringBuilder();String line = "";try{while ((line = reader.readLine()) != null){sb.append(line + "\n");}}catch (IOException e){e.printStackTrace();}finally{try{is.close();}catch (IOException e){e.printStackTrace();}}return sb.toString();}
The above certificate is loaded and requested, but you need to pay attention to a problem where SSLSocketFactory needs to be customized. refer to the following custom code:


public class SSLSocketFactoryEx extends SSLSocketFactory{SSLContext sslContext = SSLContext.getInstance("TLS");public SSLSocketFactoryEx(KeyStore truststore, char[] arry)throws NoSuchAlgorithmException, KeyManagementException,KeyStoreException, UnrecoverableKeyException{super(truststore);KeyManagerFactory localKeyManagerFactory =KeyManagerFactory.getInstance(KeyManagerFactory.getDefaultAlgorithm());localKeyManagerFactory.init(truststore, arry);KeyManager[] arrayOfKeyManager =localKeyManagerFactory.getKeyManagers();TrustManager tm = new X509TrustManager(){@Overridepublic X509Certificate[] getAcceptedIssuers(){return null;}@Overridepublic void checkServerTrusted(X509Certificate[] chain,String authType) throws CertificateException{}@Overridepublic void checkClientTrusted(X509Certificate[] chain,String authType) throws CertificateException{}};sslContext.init(arrayOfKeyManager, new TrustManager[] { tm },new java.security.SecureRandom());}@Overridepublic Socket createSocket(Socket socket, String host, int port,boolean autoClose) throws IOException, UnknownHostException{return sslContext.getSocketFactory().createSocket(socket, host, port,autoClose);}@Overridepublic Socket createSocket() throws IOException{return sslContext.getSocketFactory().createSocket();}}

Because it is a two-way handshake, The sslcontext cannot be initialized as null... the problem is solved ......

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.