我在用
curl --data-binary "content=abcdeöäüabcde" http://myserver.com/application/api -H "Content-Type: application/x-www-form-urlencoded; encoding=utf-8"
形成数据到POST
我的网络服务器。
在服务器端,我想解码内容:
@POST
@Path("/api")
@Consumes("application/x-www-form-urlencoded")
public void createNote(@FormParam("content") String content){
System.out.println(content);
}
结果是abcde???abcde
有谁知道我如何告诉这个方法将表单参数作为 UTF-8 使用?