码迷,mamicode.com
首页 > 其他好文 > 详细

Jersey Client传递中文参数

时间:2014-10-15 13:42:30      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   java   sp   

客户端需要客户端的包:

        <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,你好啊

Jersey Client传递中文参数

标签:style   blog   http   color   io   os   ar   java   sp   

原文地址:http://www.cnblogs.com/juepei/p/4025992.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!