gpt4 book ai didi

java - JNLP:无法将参数传递给 main

转载 作者:太空宇宙 更新时间:2023-11-04 08:13:10 25 4
gpt4 key购买 nike

我编写了一个仅输出args[0]的程序。如果没有参数传递给main,那么它将输出“Hello World”

class test {
public test(String str) {
System.out.println(str);
}
public static void main(String[] args){
if (args == null || args.length == 0) {
args = new String[] { "Hello World" };
}
new test(args[0]);
}}

.jnlp文件中,对应部分写为:

<application-desc main-class="test"/>
<argument>TEST1</argument>
</application-desc>

但是,运行这个jnlp后,它输出“Hello World”

谁能帮我找出原因吗?

最佳答案

我通过删除 / 解决了这个问题在<application-desc main-class="test"/>

关于java - JNLP:无法将参数传递给 main,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10873808/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com