AndroidStudio访问网络-Post方式

 加入网络权限 AndroidManifest.xml

<uses-permission android:name="android.permission.INTERNET"/>


public boolean dealLogin() {

        boolean bLogin = false;
        //
        String StrResponseBody = null;


        String strUrl   = "http://www.appio.cn/WebTest/LoginCheck";
        String username = "admin";
        String password = "1234";


        String strData = "username=" + username + "&password=" + password;


        try{
            byte[] requestBody = strData.getBytes( "UTF-8" );


            URL url = new URL( strUrl );
            HttpURLConnection httpURLConnection = (HttpURLConnection)url.openConnection();
            httpURLConnection.setConnectTimeout(3000);     //设置连接超时时间
            httpURLConnection.setDoInput(true);                  //打开输入流,以便从服务器获取数据
            httpURLConnection.setDoOutput(true);                 //打开输出流,以便向服务器提交数据
            httpURLConnection.setRequestMethod("POST");     //设置以Post方式提交数据
            httpURLConnection.setUseCaches(false);               //使用Post方式不能使用缓存
            httpURLConnection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");//设置请求体的类型是文本类型
            httpURLConnection.setRequestProperty("Content-Length", String.valueOf( requestBody.length));//设置请求体的长度
            OutputStream outputStream = httpURLConnection.getOutputStream();
            outputStream.write( requestBody );


            int response = httpURLConnection.getResponseCode();            //获得服务器的响应码
            if(response == HttpURLConnection.HTTP_OK) {
                InputStream inptStream = httpURLConnection.getInputStream();


                //获得响应体的字节数组
                StrResponseBody = dealResponseResult( inptStream );


                if ( StrResponseBody == "OK" )
                {
                    bLogin = true;
                }
                //获得响应头
                //responseHeader = getResponseHeader(conn);
            }//if


        }catch (IOException e) {
            e.printStackTrace();
            //return "err: " + e.getMessage().toString();
        }
        //
        return  bLogin;

    }


public  String dealResponseResult(InputStream inputStream) {
    String resultData = null;      //存储处理结果
    ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
    byte[] data = new byte[1024];
    int len = 0;
    try {
        while((len = inputStream.read(data)) != -1) {
            byteArrayOutputStream.write(data, 0, len);
        }
    } catch (IOException e) {
        e.printStackTrace();
    }
    resultData = new String(byteArrayOutputStream.toByteArray());
    return resultData;
}

  • 3
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值