Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> 采用Android中的httpclient框架發送get請求

采用Android中的httpclient框架發送get請求

編輯:關於Android編程

/**
	 * 采用httpclientGet請求的方式
	 * 
	 * @param username
	 * @param password
	 * @return null表示求得的路徑有問題,text返回請求得到的數據
	 */
	public static String httpclientGet(String username, String password) {
		try {
			// 1.打開一個浏覽器
			HttpClient client = new DefaultHttpClient();
			// 2.輸入地址
			String path = "http://172.22.64.156:8080/0001AndroidWebService/LoginServlet?username="
					+ URLEncoder.encode(username)
					+ "&password="
					+ URLEncoder.encode(password);
			// 指定請求方式
			HttpGet get = new HttpGet(path);
			// 3.敲回車
			HttpResponse response = client.execute(get);
			//獲取返回的碼
			int code = response.getStatusLine().getStatusCode();
			if (code == 200) {
				//獲取返回的信息
				InputStream is = response.getEntity().getContent();
				String text = StreamUtil.readStream(is);
				return text;
			} else {
				return null;
			}
		} catch (Exception e) {
			e.printStackTrace();
			return null;
		}
	}

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved