android 与服务器get或post交互数据

package mydemo.mycom.demo2.service;

import java.io.InputStream;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.URL;

import mydemo.mycom.demo2.utils.StreamTools;

/**
 * Created by Administrator on 2015/5/20.
 */
public class NetService {

    public static String loginByGet(String username,String password)
    {
        try
        {
            String path = "http://192.168.1.110:1010/UserInfo/Login?username="+username+"&password="+password;
            URL url = new URL(path);
            HttpURLConnection conn = (HttpURLConnection)url.openConnection();
            conn.setConnectTimeout(5000);
            conn.setRequestMethod("GET");
            int code = conn.getResponseCode();
            if(code==200)
            {
                //请求成功
                InputStream is = conn.getInputStream();
                String result = StreamTools.readInputStream(is);
                return result;
            }
            else
            {
                //请求失败
                return null;
            }
        }catch (Exception e)
        {
            e.printStackTrace();
        }
        return null;
    }

    public static String loginByPost(String username,String password)
    {
        try
        {
            String path = "http://192.168.1.110:1010/UserInfo/Login";
            URL url = new URL(path);
            HttpURLConnection conn = (HttpURLConnection)url.openConnection();
            conn.setConnectTimeout(5000);
            conn.setRequestMethod("POST");
            String data = "username="+username+"&password="+password;

            conn.setRequestProperty("Content-Type","application/x-www-form-urlencoded");
            conn.setRequestProperty("Content-Length",data.length()+"");

            //post 的方式 实际上是浏览器把数据 写给了服务器
            conn.setDoInput(true);
            OutputStream os = conn.getOutputStream();
            os.write(data.getBytes());
            int code = conn.getResponseCode();
            if(code==200)
            {
                //请求成功
                InputStream is = conn.getInputStream();
                String result = StreamTools.readInputStream(is);
                return result;
            }
            else
            {
                //请求失败
                return null;
            }
        }catch (Exception e)
        {
            e.printStackTrace();
        }
        return null;
    }
}

2.StreamTools

package mydemo.mycom.demo2.utils;

import java.io.ByteArrayOutputStream;
import java.io.InputStream;

public class StreamTools {
    public static String readInputStream(InputStream is)
    {
        try
        {
            ByteArrayOutputStream baos = new ByteArrayOutputStream();
            int len =0;
            byte[] buffer = new byte[1024];
            while((len=is.read(buffer))!=-1)
            {
                baos.write(buffer,0,len);
            }
            is.close();
            baos.close();

            byte[] result = baos.toByteArray();
            String temp = new String(result);
            return temp;
        }catch (Exception e)
        {
            e.printStackTrace();
            return null;
        }

    }

}

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。