gpt4 book ai didi

JAVA_OPTS 未被识别

转载 作者:行者123 更新时间:2023-11-29 07:58:42 24 4
gpt4 key购买 nike

我有以下序列

ubuntu@ip-10-63-3-254:/mnt$ export JAVA_OPTS=-Dmt.config.from=Enubuntu@ip-10-63-3-254:/mnt$ echo $JAVA_OPTS-Dmt.config.from=Enubuntu@ip-10-63-3-254:/mnt$ javac hello.javaubuntu@ip-10-63-3-254:/mnt$ java hellomt.config.from=nullubuntu@ip-10-63-3-254:/mnt$ java -Dmt.config.from=En hellomt.config.from=Enubuntu@ip-10-63-3-254:/mnt$ 

在哪里你好.java

public class hello {public static void main (String[] args) {       String property = "mt.config.from";       String value = System.getProperty(property);       System.out.println(property + "=" + value);  }}

为什么我的 export JAVA_OPTS=-Dmt.config.from=En 没有被 hello.java 选中?谢谢

最佳答案

我认为你需要在运行时引用$JAVA_OPTS,例如:

java $JAVA_OPTS hello

我认为 java 根本不会检查环境变量,它更像是启动 jvm 时在脚本中使用的约定。

关于JAVA_OPTS 未被识别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15902913/

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