Applet 参数包含反斜杠。
当我在启动小程序的 html 页面中定义以下任一参数时:
<param name=testParam value=test\\test>
<param name=testParam value='test\\test'>
applet.getParameter("testParam")
方法返回值为“test\\test”。按照我的逻辑,它应该返回“test\test”。(对于 value=test\test,则方法返回“test\test”)这怎么可能?它是与编码有关的东西还是java在获取输出时处理的东西。
When i define either one of the parameters below in a html page which starts the applet:
<param name=testParam value=test\\test>
<param name=testParam value='test\\test'>
applet.getParameter("testParam")
method returns value as "test\\test". In my logic it should return "test\test".(for value=test\test then method returns "test\test") How is this possible? is it something relating to the encoding or something that java handles when it gets output.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Java 需要转义反斜杠。 HTML 不会。
EG
结果
Java requires back-slashes to be escaped. HTML does not.
E.G.
Result
你的字符串是在html中定义的,而不是在java中定义的。在 html 中,不需要转义反斜杠,因此您会得到“test\test”。如果您需要使用一个斜杠来定义该字符串,请使用一个斜杠来定义该字符串。
Your string is defined in html not in java. In html there is no need to escape backslashes hence why you are getting "test\test". If you need to have it with one slash, then define the string with one slash.
HTML 中不需要转义单个反斜杠。
http://www.cs.tut.fi/~jkorpela/www/revsol .html
There is no need to escape a single backslash in HTML.
http://www.cs.tut.fi/~jkorpela/www/revsol.html