简体   繁体   中英

HttpURLConnection issue

i am trying to connect a http url.But it shows a "already connected" exception. also please find any problem with my basic authentication .

  HttpURLConnection conn = (HttpURLConnection) url
              .openConnection();
  conn.setRequestMethod("POST");

  BASE64Encoder enc = new sun.misc.BASE64Encoder();
  String userpassword = user + ":" + password;
  String encodedAuthorization = enc.encode(userpassword.getBytes() );
  conn.setRequestProperty("Authorization", "Basic "+ encodedAuthorization);
  conn.setDoInput(true);
  conn.setDoOutput(true);
  conn.setRequestMethod("POST");
  conn.setRequestProperty("Content-Length",
  String.valueOf(data.length()));
  conn.setRequestProperty("Content-Type","application/x-www- form-urlencoded");
  conn.setRequestProperty("User-Agent","Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)");

Use this

URLConnection conn = url.openConnection();
 if (conn instanceof HttpsURLConnection) {
 ((HttpsURLConnection) conn).setSSLSocketFactory(sslSocketFactory);
 ((HttpsURLConnection) conn).setRequestMethod(POST);
}

You can get help from here .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM