android网络编程之post提交数据

把数据写进服务器在从服务器里读出来。

public class HttpUtils {

 

// 请求服务器端的url

private static String PATH = "http://192.168.0.102:8080/myhttp/servlet/LoginAction";

private static URL url;

 

public HttpUtils() {

// TODO Auto-generated constructor stub

}

 

static {

try {

url = new URL(PATH);

catch (MalformedURLException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

 

/**

 * @param params

 *            填写的url的参数

 * @param encode

 *            字节编码

 * @return

 */

public static String sendPostMessage(Map<String, String> params,

String encode) {

// 作为StringBuffer初始化的字符串来包装要写入的数据

StringBuffer buffer = new StringBuffer();

try {

if (params != null && !params.isEmpty()) {

  for (Map.Entry<String, String> entry : params.entrySet()) {

// 完成转码操作

buffer.append(entry.getKey()).append("=").append(

URLEncoder.encode(entry.getValue(), encode))

.append("&");

}

buffer.deleteCharAt(buffer.length() - 1);

}

// System.out.println(buffer.toString());

// 删除掉最有一个&

System.out.println("-->>"+buffer.toString());

HttpURLConnection urlConnection = (HttpURLConnection) url

.openConnection();

urlConnection.setConnectTimeout(3000);

urlConnection.setRequestMethod("POST");

urlConnection.setDoInput(true);// 表示从服务器获取数据

urlConnection.setDoOutput(true);// 表示向服务器写数据

// 获得上传信息的字节大小以及长度

byte[] mydata = buffer.toString().getBytes();

// 表示设置请求体的类型是文本类型

urlConnection.setRequestProperty("Content-Type",

"application/x-www-form-urlencoded");

urlConnection.setRequestProperty("Content-Length",

String.valueOf(mydata.length));

// 获得输出流,向服务器输出数据

OutputStream outputStream = urlConnection.getOutputStream();

outputStream.write(mydata,0,mydata.length);

outputStream.close();

// 获得服务器响应的结果和状态码

int responseCode = urlConnection.getResponseCode();

if (responseCode == 200) {

return changeInputStream(urlConnection.getInputStream(), encode);

}

catch (UnsupportedEncodingException e) {

// TODO Auto-generated catch block

e.printStackTrace();

catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

return "";

}

 

/**

 * 将一个输入流转换成指定编码的字符串

 * 

 * @param inputStream

 * @param encode

 * @return

 */

private static String changeInputStream(InputStream inputStream,

String encode) {

// TODO Auto-generated method stub

ByteArrayOutputStream outputStream = new ByteArrayOutputStream();

byte[] data = new byte[1024];

int len = 0;

String result = "";

if (inputStream != null) {

try {

while ((len = inputStream.read(data)) != -1) {

outputStream.write(data, 0, len);

}

result = new String(outputStream.toByteArray(), encode);

catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

return result;

}

 

/**

 * @param args

 */

public static void main(String[] args) {

// TODO Auto-generated method stub

Map<String, String> params = new HashMap<String, String>();

params.put("username""admin");

params.put("password""1234");

String result = HttpUtils.sendPostMessage(params, "utf-8");

System.out.println("--result->>" + result);

}

 

}

向服务器写入数据,都是调httpurlconnection的输出流方法来完成的,向输出流写的数据一般都是字节类型,所有在这之前需要把从客户端收集来的数据进行StringBuffer包装。








另一种方式


public class HttpUtils {

//使用apache提交数据

public HttpUtils() {

// TODO Auto-generated constructor stub

}

 

public static String sendHttpClientPost(String path,

Map<String, String> map, String encode) {

//把数据打包封装

List<NameValuePair> list = new ArrayList<NameValuePair>();

if (map != null && !map.isEmpty()) {

for (Map.Entry<String, String> 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);

// 指定post请求

DefaultHttpClient client = new DefaultHttpClient();

HttpResponse httpResponse = client.execute(httpPost);

if (httpResponse.getStatusLine().getStatusCode() == 200) {

return changeInputStream(httpResponse.getEntity().getContent(),

encode);

}

catch (UnsupportedEncodingException e) {

// TODO Auto-generated catch block

e.printStackTrace();

catch (ClientProtocolException e) {

// TODO Auto-generated catch block

e.printStackTrace();

catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

return "";

}

 

/**

 * 将一个输入流转换成指定编码的字符串

 * 

 * @param inputStream

 * @param encode

 * @return

 */

public static String changeInputStream(InputStream inputStream,

String encode) {

// TODO Auto-generated method stub

ByteArrayOutputStream outputStream = new ByteArrayOutputStream();

byte[] data = new byte[1024];

int len = 0;

String result = "";

if (inputStream != null) {

try {

while ((len = inputStream.read(data)) != -1) {

outputStream.write(data, 0, len);

}

//进行编码

result = new String(outputStream.toByteArray(), encode);

catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

return result;

}

 

/**

 * @param args

 */

public static void main(String[] args) {

// TODO Auto-generated method stub

String path = "http://192.168.0.102:8080/myhttp/servlet/LoginAction";

Map<String, String> params = new HashMap<String, String>();

params.put("username""admin");

params.put("password""123");

String result = HttpUtils.sendHttpClientPost(path, params, "utf-8");

System.out.println("-->>"+result);

}

 

}

 


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值