如何在Restlet Framework中为请求设置字符编码?

时间:2011-09-26 05:58:55

标签: rest restlet

我正在使用Restlet Framework来接收和发送数据。

//Receiving the Request.
Request helpReq = new Request();

这是我的代码,我想发送(设置)字符编码以及响应(helpRes)..

//Responding to the Request
Response helpRes = client.handle(helpReq);

1 个答案:

答案 0 :(得分:1)

编码适用于随请求一起发送的表示。请参阅Representation.characterSet属性和Request.entity属性。