SSLUtil.java 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. package com.shanghaichengdi.ghjgitem.util;
  2. import java.io.OutputStreamWriter;
  3. import java.net.URL;
  4. import java.net.URLConnection;
  5. import java.security.cert.CertificateException;
  6. import java.security.cert.X509Certificate;
  7. import javax.net.ssl.HostnameVerifier;
  8. import javax.net.ssl.HttpsURLConnection;
  9. import javax.net.ssl.SSLContext;
  10. import javax.net.ssl.SSLSession;
  11. import javax.net.ssl.TrustManager;
  12. import javax.net.ssl.X509TrustManager;
  13. import org.apache.commons.io.IOUtils;
  14. /**
  15. * lag
  16. */
  17. public class SSLUtil {
  18. private static void trustAllHttpsCertificates() throws Exception {
  19. TrustManager[] trustAllCerts = new TrustManager[1];
  20. TrustManager tm = new miTM();
  21. trustAllCerts[0] = tm;
  22. SSLContext sc = SSLContext.getInstance("SSL");
  23. sc.init(null, trustAllCerts, null);
  24. HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory());
  25. }
  26. /**
  27. * 忽略HTTPS请求的SSL证书,必须在openConnection之前调用
  28. *
  29. * @throws Exception
  30. */
  31. public static void ignoreSsl() throws Exception {
  32. HostnameVerifier hv = new HostnameVerifier() {
  33. public boolean verify(String urlHostName, SSLSession session) {
  34. System.out.println("Warning: URL Host: " + urlHostName
  35. + " vs. " + session.getPeerHost());
  36. return true;
  37. }
  38. };
  39. trustAllHttpsCertificates();
  40. HttpsURLConnection.setDefaultHostnameVerifier(hv);
  41. }
  42. public static String getRequest(String url, int timeOut) throws Exception {
  43. URL u = new URL(url);
  44. if ("https".equalsIgnoreCase(u.getProtocol())) {
  45. SSLUtil.ignoreSsl();
  46. }
  47. URLConnection conn = u.openConnection();
  48. conn.setConnectTimeout(timeOut);
  49. conn.setReadTimeout(timeOut);
  50. return IOUtils.toString(conn.getInputStream());
  51. }
  52. public static String postRequest(String urlAddress, String args, int timeOut)
  53. throws Exception {
  54. URL url = new URL(urlAddress);
  55. if ("https".equalsIgnoreCase(url.getProtocol())) {
  56. SSLUtil.ignoreSsl();
  57. }
  58. URLConnection u = url.openConnection();
  59. u.setDoInput(true);
  60. u.setDoOutput(true);
  61. u.setConnectTimeout(timeOut);
  62. u.setReadTimeout(timeOut);
  63. OutputStreamWriter osw = new OutputStreamWriter(u.getOutputStream(),
  64. "UTF-8");
  65. osw.write(args);
  66. osw.flush();
  67. osw.close();
  68. u.getOutputStream();
  69. return IOUtils.toString(u.getInputStream());
  70. }
  71. static class miTM implements TrustManager, X509TrustManager {
  72. public X509Certificate[] getAcceptedIssuers() {
  73. return null;
  74. }
  75. public boolean isServerTrusted(X509Certificate[] certs) {
  76. return true;
  77. }
  78. public boolean isClientTrusted(X509Certificate[] certs) {
  79. return true;
  80. }
  81. public void checkServerTrusted(X509Certificate[] certs, String authType)
  82. throws CertificateException {
  83. return;
  84. }
  85. public void checkClientTrusted(X509Certificate[] certs, String authType)
  86. throws CertificateException {
  87. return;
  88. }
  89. }
  90. }