91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么對HttpClient請求的URL進行字符集轉碼

發布時間:2021-01-11 16:26:49 來源:億速云 閱讀:420 作者:Leah 欄目:開發技術

怎么對HttpClient請求的URL進行字符集轉碼?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

package com.vol.timingTasks;
 
 
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.auth.AuthScope;
import org.apache.http.auth.UsernamePasswordCredentials;
import org.apache.http.client.CredentialsProvider;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.BasicCredentialsProvider;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.util.EntityUtils;
 
import java.io.IOException;
 
/**
 * 數據抽取測試類
 *
 * @author xbx
 *
 */
public class XBXmain {
  private final static String ENCODE = "utf-8";
 
  public static void main(String[] args) throws Exception {
		getDataA();
  }
 
 
  /*
   * Basic驗證
   * 用戶名:
   * 密鑰:
   */
  public static void getDataA() throws Exception{
    HttpResponse httpResponse = null;
    HttpClient httpClient = new DefaultHttpClient();
    String projectName = "中科洛陽信息產業園項目(一期)";
    String url = "http://labour.ztjs.cn/clound/wsForThird/laboursByProjectName/"+projectName ;
    HttpGet get = new HttpGet(url);
    try {
 
      // 創建HttpClientBuilder
      HttpClientBuilder httpClientBuilder = HttpClientBuilder.create();
      // 設置BasicAuth
      CredentialsProvider provider = new BasicCredentialsProvider();
      // Create the authentication scope
      AuthScope scope = new AuthScope(AuthScope.ANY_HOST, AuthScope.ANY_PORT, AuthScope.ANY_REALM);
      // Create credential pair,在此處填寫用戶名和密碼
      UsernamePasswordCredentials credentials = new UsernamePasswordCredentials("", "");
      // Inject the credentials
      provider.setCredentials(scope, credentials);
      // Set the default credentials provider
      httpClientBuilder.setDefaultCredentialsProvider(provider);
      // HttpClient
      CloseableHttpClient closeableHttpClient = httpClientBuilder.build();
 
 
      httpResponse = closeableHttpClient.execute(get);
      HttpEntity httpEntity = httpResponse.getEntity();
      String httpResult = EntityUtils.toString(httpEntity);
      String httpResult2 = EntityUtils.toString(httpEntity);
    } catch (IOException e) {
    }
 
  }
 
}

把 訪問地址:http://labour.ztjs.cn/clound/wsForThird/laboursByProjectName/中科洛陽信息產業園項目(一期) 放在谷歌瀏覽器,然后再復制出來,發現漢字編碼格式變了。ok,那就先轉換下編碼格式再發送請求。  修改后代碼如下:

package com.vol.timingTasks;
 
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.auth.AuthScope;
import org.apache.http.auth.UsernamePasswordCredentials;
import org.apache.http.client.CredentialsProvider;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.BasicCredentialsProvider;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.util.EntityUtils;
 
import java.io.IOException;
 
/**
 * 數據抽取測試類
 *
 * @author xbx
 *
 */
public class XBXmain {
  private final static String ENCODE = "utf-8";
 
  public static void main(String[] args) throws Exception {
		getDataA();
  }
 
 
  /*
   * Basic驗證
   * 用戶名:
   * 密鑰:
   */
  public static void getDataA() throws Exception{
    HttpResponse httpResponse = null;
    HttpClient httpClient = new DefaultHttpClient();
    String projectName = "中科洛陽信息產業園項目(一期)";
    String url = "http://labour.ztjs.cn/clound/wsForThird/laboursByProjectName/"+java.net.URLEncoder.encode(projectName, ENCODE);//URL 中文 轉碼
    HttpGet get = new HttpGet(url);
    try {
 
      // 創建HttpClientBuilder
      HttpClientBuilder httpClientBuilder = HttpClientBuilder.create();
      // 設置BasicAuth
      CredentialsProvider provider = new BasicCredentialsProvider();
      // Create the authentication scope
      AuthScope scope = new AuthScope(AuthScope.ANY_HOST, AuthScope.ANY_PORT, AuthScope.ANY_REALM);
      // Create credential pair,在此處填寫用戶名和密碼
      UsernamePasswordCredentials credentials = new UsernamePasswordCredentials("", "");
      // Inject the credentials
      provider.setCredentials(scope, credentials);
      // Set the default credentials provider
      httpClientBuilder.setDefaultCredentialsProvider(provider);
      // HttpClient
      CloseableHttpClient closeableHttpClient = httpClientBuilder.build();
 
      httpResponse = closeableHttpClient.execute(get);
      HttpEntity httpEntity = httpResponse.getEntity();
      String httpResult = EntityUtils.toString(httpEntity);
      String httpResult2 = EntityUtils.toString(httpEntity);
    } catch (IOException e) {
    }
 
  }
 
}

再試試,請求成功,只需要轉下編碼:

String url = "http://labour.ztjs.cn/clound/wsForThird/laboursByProjectName/"+java.net.URLEncoder.encode(projectName, ENCODE);//URL  中文 轉碼

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

永福县| 澄城县| 融水| 中西区| 山丹县| 舟曲县| 深水埗区| 双桥区| 包头市| 留坝县| 怀宁县| 大方县| 吴桥县| 利辛县| 眉山市| 故城县| 星子县| 江油市| 玛曲县| 马公市| 乌兰浩特市| 稻城县| 旬阳县| 容城县| 乐亭县| 海林市| 五大连池市| 南京市| 沿河| 兴仁县| 太康县| 天门市| 启东市| 白沙| 新蔡县| 东台市| 改则县| 平邑县| 莎车县| 绥棱县| 罗源县|