httpclient访问restful

本文介绍如何使用Apache HttpClient实现JAX-RS RESTful客户端,并通过示例代码展示了如何发送POST请求到RESTful API。具体步骤包括创建HttpClient实例、构造请求体、设置请求头以及发送请求并处理响应。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

转:http://howtodoinjava.com/2013/05/21/jax-rs-restful-client-using-apache-httpclient/

 

JAX-RS RESTful client using apache httpclient

 

public static void demoPostRESTAPI()  throws Exception
{
     DefaultHttpClient httpClient =  new DefaultHttpClient();
     
     User user =  new User();
     user.setId( 100 );
     user.setFirstName( "Lokesh" );
     user.setLastName( "Gupta" );
     
     StringWriter writer =  new StringWriter();
     JAXBContext jaxbContext = JAXBContext.newInstance(User. class );
     Marshaller jaxbMarshaller = jaxbContext.createMarshaller();
     jaxbMarshaller.marshal(user, writer);
     
     try
     {
         //Define a postRequest request
         HttpPost postRequest =  new HttpPost( "http://localhost:8080/RESTfulDemoApplication/user-management/users" );
         
         //Set the API media type in http content-type header
         postRequest.addHeader( "content-type" "application/xml" );
         
         //Set the request post body
         StringEntity userEntity =  new StringEntity(writer.getBuffer().toString());
         postRequest.setEntity(userEntity);
          
         //Send the request; It will immediately return the response in HttpResponse object if any
         HttpResponse response = httpClient.execute(postRequest);
         
         //verify the valid error code first
         int statusCode = response.getStatusLine().getStatusCode();
         if (statusCode !=  201 )
         {
             throw new RuntimeException( "Failed with HTTP error code : " + statusCode);
         }
     }
     finally
     {
         //Important: Close the connect
         httpClient.getConnectionManager().shutdown();
     }
}
 
就是关键的 postRequest.addHeader( "content-type" "application/xml" );
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值