struts2请求编码

发布于 2024-08-07 20:34:36 字数 331 浏览 2 评论 0原文

我正在 HTTP POST 正文中发送 XML。

问:

  1. struts2支持utf-8编码的处理请求吗?

参考:

(位于页面底部)

I am sending a XML in HTTP POST body.

Question:

  1. Does struts2 support processing request in utf-8 encoding?

Reference:

(Around bottom of the page)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

闻呓 2024-08-14 20:34:36

是的,您不应该有任何问题,只需在将流发送到视图时在操作中定义 enconding 即可,以防您使用流结果类型。

STRUTS.XML
<result name="xml" type="stream">
<param name="inputName">inputStream</param>
</result>

ACTION
setInputStream(new ByteArrayInputStream(xmlObject.toString().getBytes("UTF-8")));
return "xml";

Yes you shouldn't have any problem, just define the enconding in your action when sending the stream to the view, in case you are using the stream result type.

STRUTS.XML
<result name="xml" type="stream">
<param name="inputName">inputStream</param>
</result>

ACTION
setInputStream(new ByteArrayInputStream(xmlObject.toString().getBytes("UTF-8")));
return "xml";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文