我正在使用Restlet Framework来接收和发送数据。
//Receiving the Request.
Request helpReq = new Request();
这是我的代码,我想发送(设置)字符编码以及响应(helpRes)..
//Responding to the Request
Response helpRes = client.handle(helpReq);
答案 0 :(得分:1)
编码适用于随请求一起发送的表示。请参阅Representation.characterSet属性和Request.entity属性。