HttpURLConnection get请求 添加json参数 亮哥代码实力见证

try {
            HashMap<String, Object> reqmap = new  HashMap<String,Object>();
            reqmap.put("username", "lilp21");
            reqmap.put("password","pass1234");
            JSONObject obj = new JSONObject(reqmap);
            System.out.println(obj.toString());
            String r = URLEncoder.encode(obj.toString(), "UTF-8");      
            String reqUrl = "http://erpuat.tk.cn/tkcnerp?api_s=ldap&api_m=login&data=" + r;
            String doInnerGet = HttpUtil.doInnerGet(reqUrl, ConstantConfig.HTTP_RETRY_NUM, ConstantConfig.HTTP_READ_TIMEOUT);
            System.out.println(doInnerGet);
        } catch (IOException e) {
            e.printStackTrace();
        }

 

 

 

public static String doInnerGet( String url, int retryNum, int readTimeout ) throws IOException {
        for ( int i = 1;; ++i ) {
            try {
                return doGet( url, readTimeout );
            } catch ( IOException e ) {
                if ( i == retryNum )
                    throw e;
                try {
                    log.info("INFO-->HttpUtil-->doInnerGet |param:url="+url+" |retryNum="+retryNum+"|readTimeout="+readTimeout);
                    Thread.sleep( 10 );
                } catch ( InterruptedException e1 ) {
                }
            }
        }
    }

 

 

    private static String doGet( String url, int readTimeout ) throws IOException {
        URL url1 = null;
        BufferedReader reader = null;
        HttpURLConnection connection = null;
        try {
            url1 = new URL( url );
            connection = (HttpURLConnection) url1.openConnection();
            connection.setConnectTimeout( 8000 );
            connection.setReadTimeout( readTimeout );
            connection.setRequestMethod( "GET" );
            connection.setInstanceFollowRedirects( true );
            connection.connect();
            reader = new BufferedReader( new InputStreamReader( connection.getInputStream(), "utf-8" ) );
            StringBuffer sb = new StringBuffer();
            String line;
            while ( ( line = reader.readLine() ) != null ) {
                sb.append( line ).append( "\n" );
            }
            reader.close();
            connection.disconnect();
            return sb.toString();
        } finally {
            if ( reader != null ) {
                try {
                    reader.close();
                } catch ( IOException e1 ) {
                }
            }
            if ( connection != null )
                connection.disconnect();
        }
    }

 

 

 

 

 

通过HTTPURLConnection发送GET请求添加参数的方法如下: 1. 创建URL对象,将目标网址作为参数传入URL构造函数中。 2. 调用URL对象的openConnection()方法获取连接对象HttpURLConnection。 3. 设置连接超时时间和读取超时时间,可以使用connection.setConnectTimeout(timeout)和connection.setReadTimeout(timeout)方法设置。 4. 设置请求方式为GET,使用connection.setRequestMethod("GET")方法设置。 5. 添加参数到URL中,可以通过在URL后面添加参数的方式实现。例如,如果参数是"username=lilp21&password=pass1234",则可以使用String的拼接方式将参数添加到URL中。 6. 调用connection.connect()方法建立连接。 7. 获取输入流,使用connection.getInputStream()方法获取。 8. 使用BufferedReader逐行读取输入流中的数据,将数据存储到StringBuffer中。 9. 关闭输入流和连接,使用reader.close()和connection.disconnect()方法关闭。 10. 返回获取到的数据。 中提到的方法是通过创建一个URL对象,并使用openConnection()方法获得HttpURLConnection对象。然后设置连接超时时间和读取超时时间,使用setConnectTimeout()和setReadTimeout()方法设置。接下来设置请求方式为GET,使用setRequestMethod("GET")方法。最后使用connect()方法建立连接,并获取输入流以及进行后续的操作。 中的方法是通过调用doGet()方法来发送GET请求并获取返回结果。在方法内部的URL对象和HttpURLConnection对象的创建和连接设置与上述步骤相同。 中的代码片段是一个实际的示例,通过创建HashMap对象,将参数以键值对的形式放入HashMap中。然后使用JSONObject将HashMap转换为JSON格式的字符串。接着使用URLEncoder对JSON字符串进行编码,并将编码后的字符串添加到URL中。最后使用HttpUtil.doInnerGet()方法发送GET请求,并获取返回结果。 综上所述,通过创建URL对象,设置连接超时时间、读取超时时间和请求方式为GET,添加参数到URL中,并发送GET请求可以实现在HTTPURLConnection添加参数
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值