检查命令行参数是否为空/ null

时间:2016-08-22 01:32:53

标签: java arguments

如果我通过命令行args [0]和args [1]提供两个参数。如何单独检查其中一个参数是否为空/空?

1 个答案:

答案 0 :(得分:-1)

这是一个简单的例子Sam:

if (args.length > 0) {
    if (!args[0].isEmpty()) { 
        // Do whatever with arg[0] (the first argument)
    }
    if (!args[1].isEmpty()) { 
        // Do whatever with arg[1] (the second argument)
    }
}