Jersey Client传递中文参数

本文提供了一个使用Jersey客户端进行RESTful请求的示例代码,并解释了其对应的服务端方法,最终输出为hello,你好啊。

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

客户端需要客户端的包:

        <dependency>
            <groupId>com.sun.jersey</groupId>
            <artifactId>jersey-client</artifactId>
            <version>1.18</version>
        </dependency>

版本和之前对应。

代码如下:

package client;

import com.sun.jersey.api.client.Client;
import com.sun.jersey.api.client.ClientResponse;
import com.sun.jersey.api.client.WebResource;

import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;

/**
 * Created by wl on 2014/10/15.
 */
public class RestfulClient {
    public static void main(String args[]){
        String url="http://localhost:8080/services/hello/";
        Client client=Client.create();
        try {
            url+= URLEncoder.encode("你好啊","utf-8");
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        }
        WebResource resource=client.resource(url);
        ClientResponse response=resource.get(ClientResponse.class);
        String entity=response.getEntity(String.class);
        System.out.println(entity);

    }
}

他对应的服务端方法:

    //带参数
    @GET
    @Produces(MediaType.TEXT_PLAIN)
    @Path("{name}")
    public String sayHello(@PathParam("name")String name){
        return "hello,"+name;
    }

所以,结果是打印:

hello,你好啊

转载于:https://www.cnblogs.com/juepei/p/4025992.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值