httpclient发送put请求

package com.http;


import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;

import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.methods.HttpPut;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.DefaultHttpClient;

public class HttpSendTest {
    

    public static void main(String[] args) throws IllegalStateException, IOException {
        String a="{
    "nh": 0,
    "category": "person",
    "doc":{
          "id": 1001,
          "name": "张三",
           "sex": "男",
           "birthdate": "1990-01-01",
            "city": "上海"
    }
}";
        String b = new String(a.getBytes("ISO-8859-1"), "UTF-8");
        
        DefaultHttpClient httpClient = new DefaultHttpClient();
        StringBuilder result = new StringBuilder();
        try {
            HttpPut putRequest = new HttpPut("http://10.1.40.138:5080/cio-se/index/model");
            putRequest.addHeader("Content-Type", "application/json;charset=UTF-8");
            putRequest.addHeader("Accept", "application/json");
           // JSONObject keyArg = new JSONObject();
           // keyArg.put("value1", newValue);
           // keyArg.put("value2", newValue2);
            StringEntity input = null;
            try {
                input = new StringEntity(b);
            } catch (UnsupportedEncodingException e) {
                e.printStackTrace();

            }
            putRequest.setEntity(input);
            HttpResponse response = httpClient.execute(putRequest);
            if (response.getStatusLine().getStatusCode() != 200) {
                throw new RuntimeException("Failed : HTTP error code : "
                        + response.getStatusLine().getStatusCode());
            }
            BufferedReader br = new BufferedReader(new InputStreamReader(
                    (response.getEntity().getContent())));
            String output;
            while ((output = br.readLine()) != null) {
                result.append(output);
            }
            System.out.println(output);
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
    }
        
    }
        

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值