Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用 JSTL 解码 URL/URI,以便编码字符串,例如:
%3Fname%3DUpHelix
变成:
?name=UpHelix
我知道您可以在常规 java 中使用 URLDecoder,但我不知道如何在 JSTL 中使用它。
是否有可以完成此任务的 JSTL 方法?
没有标准的标签可以做到这一点。因此,您应该在控制器中执行此操作,或者创建您自己的标记来执行此操作并在 JSP 中使用此标记。
对我来说,这看起来不像视图逻辑(即标记生成逻辑),所以最好的地方可能是在控制器中。