0

我需要在我的java程序中读取一些在windows批处理脚本中定义的参数......我如何定义参数......?例如,我需要读取脚本中定义的变量;变量 v=XYX

我尝试定义like(在脚本中);

java  -Dvariable=XYX

但得到以下异常;

Usage: java [-options] class [args...]
           (to execute a class)
   or  java [-options] -jar jarfile [args...]
           (to execute a jar file)

where options include:
    -client       to select the "client" VM
4

1 回答 1

0

您必须先调用类的主要方法

java com.xyz.MyClass -Dvariable=XYX

于 2012-04-23T12:29:48.020 回答