如何对 StringBody 进行编码?
当我想创建一个包含“ñ”或任何扩展字符的 StringBody 时,我遇到了问题。我需要将其编码为 UTF-8,并且我尝试像这样定义字符集(UTF-8):
new StringBody(i.getValue(), Charset.forName(HTTP.UTF_8));
它不起作用。有什么方法可以将此字符串主体编码为 UTF-8 吗?
I have a problem when I want to create a StringBody which contains a "ñ" or any extended character. I need to encode it to UTF-8 and I have tried to define the Charset (UTF-8) like this:
new StringBody(i.getValue(), Charset.forName(HTTP.UTF_8));
It doesn't work. Are there any way to encode this String body to UTF-8?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下面是使用字符串数据类型的代码片段。尝试将 String 更改为 StringBody。希望它有效。
Below is a snippet working with string data type. Try to change the String to StringBody. Hope it works.