我想停下来<被转换为<在Java中,当我将它保存为字符串的一部分时

发布于 2024-10-15 11:16:25 字数 113 浏览 4 评论 0 原文

我将一些 HTML 存储为字符串,并希望将其输出到 JSP。

是否有一个简单的实用函数可供我使用,或者我应该编写自己的函数。我可以很容易地写它,但我宁愿用最常见的方式来做。

谢谢,

I am storing some HTML as a String which I want to output to a JSP.

Is there a simply utility function that I should use for this, or should I write my own. I could write it easily but I'd rather do it the most common way.

Thanks,

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

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

发布评论

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

评论(3

桃气十足 2024-10-22 11:16:25

你不需要做任何特别的事情。一个简单的表达式将输出字符串而不转义: ${str}

需要额外的工作才能转义,例如使用 JSTL 标签。您必须在 JSP 中或在呈现 JSP 之前对 String 执行类似的操作。

You don't need to do anything special. A simple expression will output the string without escaping: ${str}

It takes extra work to get escaping, such as using the JSTL <c:out/> tag. You must be doing something like that, either in the JSP, or to the String before the JSP is rendered.

夜还是长夜 2024-10-22 11:16:25

我认为你必须在这里再次重新发明轮子,因为 java 没有提供任何可以为你做到这一点的类。您可以对 URL 进行编码和解码。另一种方法是利用某人的轮子发明,例如“apache commons Langs”。

干杯

I think you have to reinvent wheel here again as java does not provide any class which can do this for you. You can encode and decode URL. Other way is to make use of some one's wheel invention like 'apache commons Langs'.

cheers

↙厌世 2024-10-22 11:16:25

我不确定我完全明白你的问题。如果您只想打印字符串而不转义输出,请尝试:

<% out.println(str); %>

I'm not sure I completely follow your question. If you just want to print a string without escaping the output, try:

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