Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android之旅十五 android中的網絡操作

Android之旅十五 android中的網絡操作

編輯:關於Android編程

android中的網絡操作和java裡面沒有什麼區別,java裡面的很多網絡操作方法都可以搬到android中去使用,主要幾個點:

1、post和get請求的區別,大家可以在網上查閱有關資料進行了解,get主要以向地址中拼接字符串參數發送到服務器,長度有限制,並且請求參數暴露在地址欄中,不怎麼安全;post則主要是將請求參數轉換為相應的http協議請求體發送到服務器,相比get方式,參數的長度沒有限制,並且參數信息不會暴露給用戶;

2、我們在java web裡面通過浏覽器以post方式發送數據,浏覽器幫我們轉換為相應的http協議,也就是說浏覽器內部幫我們設置為相應的http請求體,然後發送到服務器,用戶通過浏覽器向服務器發送數據-->浏覽器轉換為http協議-->發送到服務器,如果我們用android做客戶端用java代碼編寫post請求,需要設置其請求體,而get方式請求則只需要拼接相應的參數地址,用戶通過android客戶端向服務器發送數據-->編碼設置為相應的http協議-->發送到服務器;

3、android裡面包含了apache的httpclient,相當與web裡面的浏覽器,我們還可以利用其api進行相應的請求操作,相比與純java代碼,它裡面封裝了很多東西,我們只需要根據業務需求選擇相應的api即可;如果我們在swing中使用apache的httpclient,則需要導入其相應的jar包

post請求:

java web:用戶通過浏覽器向服務器發送數據-->浏覽器轉換為http協議-->發送到服務器

java代碼:用戶通過android客戶端向服務器發送數據-->編碼設置為相應的http協議-->發送到服務器

httpclient:用戶通過android客戶端向服務器發送數據(httpclient幫我們轉換為相應的http協議)-->發送到服務器

代碼實現功能:裡面都有相應的注釋,我在我的工程裡面建立了一個專門處理Http上傳、下載的類:HttpUtil

1、從服務器獲取二進制數據,圖片、視頻等:

	/**
	 * 從服務器上獲取二進制數據,例如圖片、視頻等
	 * @param serverUrl: 服務器地址
	 * @param newFileName:獲取到本地後新文件的地址+名稱 例如:C://test.png
	 */
	public static void getByteFromServer(String serverUrl,String newFileName)throws Exception{
		URL url = new URL(serverUrl);
		HttpURLConnection conn = (HttpURLConnection)url.openConnection();
		conn.setRequestMethod("GET");//通過Get方式請求
		conn.setConnectTimeout(5 * 1000);//設置連接延遲,因為android系統內存有限,不能長時間去與服務器建立連接
		InputStream inStream = conn.getInputStream();//通過輸入流獲取圖片數據
		byte[] data = readInputStream(inStream);//得到圖片的二進制數據
		File imageFile = new File(newFileName);
		FileOutputStream outStream = new FileOutputStream(imageFile);
		outStream.write(data);
		outStream.close();
	}

	/**
	 * 將輸入流轉換為字節數據
	 * @param inStream
	 * @return
	 * @throws Exception
	 */
	public static byte[] readInputStream(InputStream inStream) throws Exception{
		ByteArrayOutputStream outStream = new ByteArrayOutputStream();
		byte[] buffer = new byte[1024];
		int len = 0;
		while( (len=inStream.read(buffer)) != -1 ){
			outStream.write(buffer, 0, len);
		}
		inStream.close();
		return outStream.toByteArray();
	}

2、從服務器獲取文本信息,例如文本、html、xml、json等數據信息

	/**
	 * 從服務器上獲取文本信息,例如html、xml等信息
	 * @param serverUrl
	 * @return 文本字符串
	 */
	public static String getTxtFromServer(String serverUrl)throws Exception{
		URL url = new URL(serverUrl);
		HttpURLConnection conn = (HttpURLConnection)url.openConnection();
		conn.setRequestMethod("GET");
		conn.setConnectTimeout(5 * 1000);
		InputStream inStream = conn.getInputStream();//通過輸入流獲取txt數據
		byte[] data = readInputStream(inStream);//得到txt的二進制數據
		String txt = new String(data);
		return txt;
	}

3、以get方式向服務器發送數據信息

	
	/**Get請求方式即是通過將參數放到地址中發送到服務器
	 * 向服務器發送Get請求
	 * @param path:服務器請求地址
	 * @param params:請求參數
	 * @param enc:編碼
	 * @return true:請求成功  false:請求失敗
	 * @throws Exception
	 */
	public static boolean sendGetRequest(String path, Map params, String enc) throws Exception{
		StringBuilder sb = new StringBuilder(path);
		//?username=jack&password=123456&age=23
		if(params!=null && !params.isEmpty()){
			sb.append('?');
			for(Map.Entry entry : params.entrySet()){
				sb.append(entry.getKey()).append('=')
					.append(URLEncoder.encode(entry.getValue(), enc)).append('&');
			}
			sb.deleteCharAt(sb.length()-1);
		}
		
		URL url = new URL(sb.toString());
		HttpURLConnection conn = (HttpURLConnection)url.openConnection();
		conn.setRequestMethod("GET");
		conn.setConnectTimeout(5 * 1000);
		if(conn.getResponseCode()==200){
			//請求成功,可以調用上面的getByteFromServer方法得到相應的服務器數據
			//byte[] b=readInputStream(conn.getInputStream());
			return true;
		}
		return false;
	}

4、以post方式向服務器發送數據信息:

	/**Post請求在浏覽器中是轉換了相應的http協議進行
	 * 而轉換後的http協議中包含了例如Content-Type、Content-Length等信息
	 * 所以通過android客戶端發送post請求需要將其設置為相應的http協議發送出去
	 * 向服務器發送一個post表單請求
	 * @param path:服務器地址
	 * @param params:請求參數
	 * @param enc:編碼
	 * @return true:請求成功 false:請求失敗
	 * @throws Exception
	 */
	public static boolean sendPostRequest(String path, Map params, String enc) throws Exception{
		//username=jack&password=123456&age=23
		StringBuilder sb = new StringBuilder();
		if(params!=null && !params.isEmpty()){
			for(Map.Entry entry : params.entrySet()){
				sb.append(entry.getKey()).append('=')
					.append(URLEncoder.encode(entry.getValue(), enc)).append('&');
			}
			sb.deleteCharAt(sb.length()-1);
		}
		byte[] entitydata = sb.toString().getBytes();//得到實體的二進制數據
		URL url = new URL(path);
		HttpURLConnection conn = (HttpURLConnection)url.openConnection();
		conn.setRequestMethod("POST");
		conn.setConnectTimeout(5 * 1000);
		conn.setUseCaches(false);//不進行緩存
		conn.setDoOutput(true);//如果通過post提交數據,必須設置允許對外輸出數據
		
		//設置http請求頭,向服務器發送post請求,Content-Type和Content-Length兩個參數必須要,其他可省略
		//設置發送內容類型,為表單數據
		conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
		//設置發送內容長度
		conn.setRequestProperty("Content-Length", String.valueOf(entitydata.length));
		
		conn.setRequestProperty("Accept", "image/gif, image/jpeg, image/pjpeg, image/pjpeg, application/x-shockwave-flash, application/xaml+xml, application/vnd.ms-xpsdocument, application/x-ms-xbap, application/x-ms-application, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*");
		conn.setRequestProperty("Accept-Language", "zh-CN");
		conn.setRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)");
		conn.setRequestProperty("Connection", "Keep-Alive");
		
		OutputStream outStream = conn.getOutputStream();
		outStream.write(entitydata);
		outStream.flush();
		outStream.close();
		if(conn.getResponseCode()==200){
			//請求成功,可以調用上面的getByteFromServer方法得到相應的服務器數據
			//byte[] b=readInputStream(conn.getInputStream());
			return true;
		}
		return false;
	}

5、以post方式向服務器發送xml數據信息:

	/**
	 * 向服務器發送xml數據
	 * @param path:服務器地址
	 * @param xml:xml字符串信息
	 * @param enc:編碼
	 * @return true:請求成功  false:請求失敗
	 * @throws Exception
	 */
	public static boolean sendPostXMLRequest(String path, String xml,String enc)throws Exception{
		byte[] data = xml.getBytes();
		URL url = new URL(path);
		HttpURLConnection conn = (HttpURLConnection)url.openConnection();
		conn.setRequestMethod("POST");
		conn.setConnectTimeout(5 * 1000);
		conn.setDoOutput(true);//如果通過post提交數據,必須設置允許對外輸出數據
		//設置發送內容類型,為xml數據
		conn.setRequestProperty("Content-Type", "text/xml; charset="+enc);
		//設置發送內容長度
		conn.setRequestProperty("Content-Length", String.valueOf(data.length));
		OutputStream outStream = conn.getOutputStream();
		outStream.write(data);
		outStream.flush();
		outStream.close();
		if(conn.getResponseCode()==200){
			//byte[] b=readInputStream(conn.getInputStream());
			return true;
		}
		return false;
	}

6、通過HttpClient以get方式向服務器發送數據:

	/**
	 * 通過httpClient發送get請求
	 * @param path:服務器地址
	 * @param params:參數名稱
	 * @param enc:編碼
	 * @return true:請求成功  false:請求失敗
	 * @throws Exception
	 */
	public static boolean sendGetRequestFromHttpClient(String path, Map params,String enc)
			throws Exception{
		StringBuilder sb = new StringBuilder(path);
		//?username=jack&password=123456&age=23
		if(params!=null && !params.isEmpty()){
			sb.append('?');
			for(Map.Entry entry : params.entrySet()){
				sb.append(entry.getKey()).append('=')
					.append(URLEncoder.encode(entry.getValue(), enc)).append('&');
			}
			sb.deleteCharAt(sb.length()-1);
		}
		//相當與浏覽器
    	HttpClient httpClient=new DefaultHttpClient();
		//得到一個HttpGet對象
		HttpGet get=new HttpGet(sb.toString());
		//發送一個Get請求
		HttpResponse response=httpClient.execute(get);
		if(response.getStatusLine().getStatusCode()==200){
			//String str=EntityUtils.toString(response.getEntity());即可得到服務器數據信息
			//InputStream inStream=httpEntity.getContent();即可得到服務器輸入流
			return true;
		}
		return false;
	}

7、通過HttpClient以post方式向服務器發送請求:

	/**
	 * 通過httpClient發送Post請求
	 * @param path:服務器地址
	 * @param params:參數名稱
	 * @param enc:編碼
	 * @return true:請求成功  false:請求失敗
	 * @throws Exception
	 */
	public static boolean sendPostRequestFromHttpClient(String path, Map params,String enc)
			throws Exception{
		List paramPairs = new ArrayList();
		if(params!=null && !params.isEmpty()){
			for(Map.Entry entry : params.entrySet()){
				paramPairs.add(new BasicNameValuePair(entry.getKey(), entry.getValue()));
			}
		}
		UrlEncodedFormEntity entitydata = new UrlEncodedFormEntity(paramPairs, enc);//得到經過編碼過後的實體數據
		HttpPost post = new HttpPost(path); //form
		post.setEntity(entitydata);
		DefaultHttpClient client = new DefaultHttpClient(); //浏覽器
		HttpResponse response = client.execute(post);//執行請求
		if(response.getStatusLine().getStatusCode()==200){
			//String str=EntityUtils.toString(response.getEntity());即可得到服務器數據信息
			//InputStream inStream=httpEntity.getContent();即可得到服務器輸入流
			return true;
		}
		return false;
	}

8、通過post發送上傳文件信息到服務器,相當與web表單提交,表單中包含上傳文件,其實根據浏覽器在上傳表單的時候它底層轉換為相應的http協議,我們也可以模仿其編寫相應的請求體然後提交給服務器即可,了解其原理了就很容易去理解了;

建立表單實體文件:

public class FormFile {
	/* 上傳文件的數據 */
	private byte[] data;
	private InputStream inStream;
	private File file;
	/* 文件名稱 */
	private String filname;
	/* 請求參數名稱*/
	private String parameterName;
	/* 內容類型 */
	private String contentType = "application/octet-stream";
	
	public FormFile(String filname, byte[] data, String parameterName, String contentType) {
		this.data = data;
		this.filname = filname;
		this.parameterName = parameterName;
		if(contentType!=null) this.contentType = contentType;
	}
	
	public FormFile(String filname, File file, String parameterName, String contentType) {
		this.filname = filname;
		this.parameterName = parameterName;
		this.file = file;
		try {
			this.inStream = new FileInputStream(file);
		} catch (FileNotFoundException e) {
			e.printStackTrace();
		}
		if(contentType!=null) this.contentType = contentType;
	}
	
	public File getFile() {
		return file;
	}

	public InputStream getInStream() {
		return inStream;
	}

	public byte[] getData() {
		return data;
	}

	public String getFilname() {
		return filname;
	}

	public void setFilname(String filname) {
		this.filname = filname;
	}

	public String getParameterName() {
		return parameterName;
	}

	public void setParameterName(String parameterName) {
		this.parameterName = parameterName;
	}

	public String getContentType() {
		return contentType;
	}

	public void setContentType(String contentType) {
		this.contentType = contentType;
	}
	
}

發送包含File請求:

	/**
	 * 向服務器提交的信息包含上傳文件信息
	 * 直接通過HTTP協議提交數據到服務器,實現如下面表單提交功能:
	 *   
* @param path 上傳路徑(注:避免使用localhost或127.0.0.1這樣的路徑測試,因為它會指向手機模擬器,你可以使用http://www.itcast.cn或http://192.168.1.10:8080這樣的路徑測試) * @param params 請求參數 key為參數名,value為參數值 * @param file 上傳文件 */ public static boolean sendPostRequest(String path, Map params, FormFile[] files) throws Exception{ final String BOUNDARY = "---------------------------7da2137580612"; //數據分隔線 final String endline = "--" + BOUNDARY + "--\r\n";//數據結束標志 int fileDataLength = 0; for(FormFile uploadFile : files){//得到文件類型數據的總長度 StringBuilder fileExplain = new StringBuilder(); fileExplain.append("--"); fileExplain.append(BOUNDARY); fileExplain.append("\r\n"); fileExplain.append("Content-Disposition: form-data;name=\""+ uploadFile.getParameterName()+"\";filename=\""+ uploadFile.getFilname() + "\"\r\n"); fileExplain.append("Content-Type: "+ uploadFile.getContentType()+"\r\n\r\n"); fileExplain.append("\r\n"); fileDataLength += fileExplain.length(); if(uploadFile.getInStream()!=null){ fileDataLength += uploadFile.getFile().length(); }else{ fileDataLength += uploadFile.getData().length; } } StringBuilder textEntity = new StringBuilder(); for (Map.Entry entry : params.entrySet()) {//構造文本類型參數的實體數據 textEntity.append("--"); textEntity.append(BOUNDARY); textEntity.append("\r\n"); textEntity.append("Content-Disposition: form-data; name=\""+ entry.getKey() + "\"\r\n\r\n"); textEntity.append(entry.getValue()); textEntity.append("\r\n"); } //計算傳輸給服務器的實體數據總長度 int dataLength = textEntity.toString().getBytes().length + fileDataLength + endline.getBytes().length; URL url = new URL(path); int port = url.getPort()==-1 ? 80 : url.getPort(); Socket socket = new Socket(InetAddress.getByName(url.getHost()), port); OutputStream outStream = socket.getOutputStream(); //下面完成HTTP請求頭的發送 String requestmethod = "POST "+ url.getPath()+" HTTP/1.1\r\n"; outStream.write(requestmethod.getBytes()); String accept = "Accept: image/gif, image/jpeg, image/pjpeg, image/pjpeg, application/x-shockwave-flash, application/xaml+xml, application/vnd.ms-xpsdocument, application/x-ms-xbap, application/x-ms-application, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*\r\n"; outStream.write(accept.getBytes()); String language = "Accept-Language: zh-CN\r\n"; outStream.write(language.getBytes()); String contenttype = "Content-Type: multipart/form-data; boundary="+ BOUNDARY+ "\r\n"; outStream.write(contenttype.getBytes()); String contentlength = "Content-Length: "+ dataLength + "\r\n"; outStream.write(contentlength.getBytes()); String alive = "Connection: Keep-Alive\r\n"; outStream.write(alive.getBytes()); String host = "Host: "+ url.getHost() +":"+ port +"\r\n"; outStream.write(host.getBytes()); //寫完HTTP請求頭後根據HTTP協議再寫一個回車換行 outStream.write("\r\n".getBytes()); //把所有文本類型的實體數據發送出來 outStream.write(textEntity.toString().getBytes()); //把所有文件類型的實體數據發送出來 for(FormFile uploadFile : files){ StringBuilder fileEntity = new StringBuilder(); fileEntity.append("--"); fileEntity.append(BOUNDARY); fileEntity.append("\r\n"); fileEntity.append("Content-Disposition: form-data;name=\""+ uploadFile.getParameterName()+"\";filename=\""+ uploadFile.getFilname() + "\"\r\n"); fileEntity.append("Content-Type: "+ uploadFile.getContentType()+"\r\n\r\n"); outStream.write(fileEntity.toString().getBytes()); if(uploadFile.getInStream()!=null){ byte[] buffer = new byte[1024]; int len = 0; while((len = uploadFile.getInStream().read(buffer, 0, 1024))!=-1){ outStream.write(buffer, 0, len); } uploadFile.getInStream().close(); }else{ outStream.write(uploadFile.getData(), 0, uploadFile.getData().length); } outStream.write("\r\n".getBytes()); } //下面發送數據結束標志,表示數據已經結束 outStream.write(endline.getBytes()); BufferedReader reader = new BufferedReader(new InputStreamReader(socket.getInputStream())); if(reader.readLine().indexOf("200")==-1){//讀取web服務器返回的數據,判斷請求碼是否為200,如果不是200,代表請求失敗 return false; } outStream.flush(); outStream.close(); reader.close(); socket.close(); return true; }

大家可以將代碼復制下來看看,掌握好了以後就直接可以拿來用咯!!

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