HttpURLConnection数据请求

package com.example.booktest;

import java.io.BufferedReader;
import java.net.URL;
import android.util.Log;

public class GetHttpUrlConnection {

private HttpURLConnection conn;
private InputStream is;

public String getHttpUrlData(String uri){

Log.i(“aaa”, uri);

    String resultData = "";  
    try {  
        URL url = new URL(uri); //URL对象  
        conn = (HttpURLConnection)url.openConnection();
        conn.setConnectTimeout(3000);

/* conn.setDoInput(true); //允许输入流,即允许下载
conn.setDoOutput(true); //允许输出流,即允许上传
conn.setUseCaches(false); //不使用缓冲
*/ conn.setRequestMethod(“GET”); //使用get请求
conn.connect();
int code = conn.getResponseCode();
// Log.i(“aaa”, String.valueOf(code));

        is = conn.getInputStream();
        InputStreamReader isr = new InputStreamReader(is);  
        BufferedReader bufferReader = new BufferedReader(isr);  
        String inputLine  = "";  
        while((inputLine = bufferReader.readLine()) != null){  
            resultData += inputLine + "\n";  
        }  

    } catch (Exception e) {  
        // TODO Auto-generated catch block  
        e.printStackTrace();  
    }finally{  
        if(is != null){  
            try {  
                is.close();  
            } catch (IOException e) {  
                // TODO Auto-generated catch block  
                e.printStackTrace();  
            }  
        }  
        if(conn != null){  
            conn.disconnect();  
        }  
    } 


        return resultData;

    }
}
HttpURLConnection是Java标准库中用于处理HTTP请求的类,可以通过它来发送GET和POST等类型的HTTP请求。在进行POST请求时,需要设置一些必要的HTTP头部信息,并且能够设置请求体以发送数据到服务器。以下是使用HttpURLConnection发送POST请求的基本步骤: 1. 打开URL连接:使用URL类创建一个连接对象。 2. 设置请求方法为POST:通过HttpURLConnection对象的setRequestMethod方法设置。 3. 添加必要的请求头:如"Content-Type"(指定发送的数据类型,比如"application/x-www-form-urlencoded"或"application/json")。 4. 设置请求体:如果服务器期望接收POST数据,需要将数据以字符串的形式写入连接的输出流。 5. 发送请求:通过连接的输出流发送数据。 6. 读取响应:从连接的输入流中读取服务器的响应。 下面是一个简单的示例代码: ```java import java.net.HttpURLConnection; import java.net.URL; import java.io.OutputStream; import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.IOException; public class SimplePostRequest { public static void main(String[] args) { String requestURL = "http://example.com/api/post"; String postData = "key1=value1&key2=value2"; HttpURLConnection connection = null; BufferedReader reader = null; try { URL url = new URL(requestURL); connection = (HttpURLConnection) url.openConnection(); connection.setDoOutput(true); connection.setRequestMethod("POST"); connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); try(OutputStream os = connection.getOutputStream()) { byte[] input = postData.getBytes("utf-8"); os.write(input, 0, input.length); } try(BufferedReader br = new BufferedReader( new InputStreamReader(connection.getInputStream(), "utf-8"))) { String response = null; while ((response = br.readLine()) != null) { System.out.println(response); } } } catch (IOException e) { e.printStackTrace(); } finally { if (connection != null) { connection.disconnect(); } if (reader != null) { try { reader.close(); } catch (final IOException e) { e.printStackTrace(); } } } } } ``` 这个例子中,我们使用UTF-8编码发送了一个简单的POST请求,并打印了服务器返回的响应。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值