Applet 参数包含反斜杠。

发布于 2024-11-27 07:24:14 字数 326 浏览 0 评论 0原文

当我在启动小程序的 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 技术交流群。

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

发布评论

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

评论(3

意中人 2024-12-04 07:24:14

Java 需要转义反斜杠。 HTML 不会。

EG

/* <applet
    code='TestParam'
    width='200'
    height='30'>
<param name='path' value='test\test'>
</applet> */
import javax.swing.*;

public class TestParam extends JApplet {

    public void init() {
        JTextField output = new JTextField(getParameter("path"), 20);
        add(output);
        validate();
    }
}

结果

Applet 显示字符串

Java requires back-slashes to be escaped. HTML does not.

E.G.

/* <applet
    code='TestParam'
    width='200'
    height='30'>
<param name='path' value='test\test'>
</applet> */
import javax.swing.*;

public class TestParam extends JApplet {

    public void init() {
        JTextField output = new JTextField(getParameter("path"), 20);
        add(output);
        validate();
    }
}

Result

Applet showing string

相对绾红妆 2024-12-04 07:24:14

你的字符串是在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.

极致的悲 2024-12-04 07:24:14

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

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