区分'<'以及使用 PortletRequest.getParameter() 的编码等效项

发布于 2024-11-17 16:26:19 字数 750 浏览 2 评论 0 原文

我正在为 IBM WebSphere Portal 6.1 编写 JSR 286 portlet。我有以下代码:

@ProcessAction(name="processForm")
public void processForm(ActionRequest request, ActionResponse response) 
    throws PortletException, IOException {    

    String formField1 = request.getParameter("formField1"));
    System.err.println("formField1: " + formField1);
}

如果用户提交 '<'在 HTML 表单上,系统输出:

formField1: '&lt;'

但是,如果用户提交 '<'在 HTML 表单上,系统还会输出:

formField1: '&lt;'

这使得无法确定用户实际在 HTML 表单中输入的值。有办法解决这个问题吗?

我在此处找到了一篇文章,建议执行直接替换,但它没有解决区分表单上两个不同值的问题。

I'm writing a JSR 286 portlet for IBM WebSphere Portal 6.1. I have the following code:

@ProcessAction(name="processForm")
public void processForm(ActionRequest request, ActionResponse response) 
    throws PortletException, IOException {    

    String formField1 = request.getParameter("formField1"));
    System.err.println("formField1: " + formField1);
}

If the user submits '<' on the HTML form, the system outputs:

formField1: '<'

However, if the user submits '<' on the HTML form, the system also outputs:

formField1: '<'

This makes it impossible to determine which value the user actually typed into the HTML form. Is there a way around this?

I found an article here which recommends doing a straight replace, but it doesn't address the issue of distinguishing between the two different values on the form.

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

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

发布评论

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

评论(1

神妖 2024-11-24 16:26:19

你能看到那个“<”吗?正在到达服务器,并且不是其他某个组件正在更改“<”,例如浏览器本身?

如果没有,那么此页面上的第 4 项怎么样(问题:“<”和“>”字符显示不正确):

http://publib.boulder.ibm.com/infocenter/wpdoc/v510/index.jsp?topic=/com.ibm.wp.ent.doc/wps/tbl_sec.html

Can you see that '<' is arriving at the server, and it's not some other component that is altering the '<', such as the browser itself?

If not, how about item 4 on this page (Problem: The "<" and ">" characters display incorrectly):

http://publib.boulder.ibm.com/infocenter/wpdoc/v510/index.jsp?topic=/com.ibm.wp.ent.doc/wps/tbl_sec.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文