編輯:關於Android編程
package com.liuc; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.UnsupportedEncodingException; import java.util.ArrayList; import java.util.List; import java.util.Map; import org.apache.http.HttpResponse; import org.apache.http.NameValuePair; import org.apache.http.client.ClientProtocolException; import org.apache.http.client.HttpClient; import org.apache.http.client.config.RequestConfig; import org.apache.http.client.entity.UrlEncodedFormEntity; import org.apache.http.client.methods.HttpPost; import org.apache.http.impl.client.HttpClients; import org.apache.http.message.BasicNameValuePair; public class HttpPostUtil { public static String sendHttpPost(Mapmap,String encode,String path){ List list=new ArrayList (); if (map!=null&&!map.isEmpty()) { for(Map.Entry entry:map.entrySet()){ list.add(new BasicNameValuePair(entry.getKey(), entry.getValue())); } } try { //實現將參數封裝到表單中,也就是請求體重 UrlEncodedFormEntity entity=new UrlEncodedFormEntity(list,encode); //使用post方式提交數據 HttpPost httpPost=new HttpPost(path); httpPost.setEntity(entity); RequestConfig requestConfig = RequestConfig.custom(). setSocketTimeout(2000).setConnectTimeout(2000).build();//4.3之後的設置請求和傳輸超時時間 httpPost.setConfig(requestConfig); //執行post請求 //3.X是這樣的 //HttpClient httpClient=new DefaultHttpClient(); //4.x是這樣的 HttpClient httpClient = HttpClients.createDefault(); HttpResponse httpResponse=httpClient.execute(httpPost); if (httpResponse.getStatusLine().getStatusCode()==200) { return getStringForInputStream(httpResponse.getEntity().getContent(),encode); } } catch (UnsupportedEncodingException e) { e.printStackTrace(); } catch (ClientProtocolException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } return path; } private static String getStringForInputStream(InputStream inputStream, String encode) { ByteArrayOutputStream stream=new ByteArrayOutputStream(); byte[] data=new byte[1024]; int len=0; String result=; try { if (inputStream != null) { while ((len = inputStream.read(data)) != -1) { stream.write(data, 0, len); } result=new String(stream.toByteArray(),encode); } } catch (Exception e) { } return result; } }
之前的一篇概要文章中主要說了我這次研究的一些具體情況,這裡就不在多說了,但是這裡還需要指出的是,感謝一下三位大神願意分享的知識(在我看來,懂得分享和細致的人才算是大神,不
異步消息處理線程是指線程啟動後會進入一個無限循環,每循環一次,從內部的消息隊列裡面取出一個消息,並回調相應的消息處理函數。一般在任務常駐,比如用戶交互任務的情況下使用異步
一、實現效果: 最近在項目中需要做類似於上圖顯示的效果,裡面的數字和稱謂是動態獲取的,對於這種顯示效果,有如下兩種解決方案來處理: (1)通過代碼動態設置TextVie
很多APP都有側滑菜單的功能,部分APP左右都是側滑菜單~SlidingMenu 這個開源項目可以很好幫助我們實現側滑功能,如果對SlidingMenu 還