📅  最后修改于: 2022-03-11 14:52:06.654000             🧑  作者: Mango
public class Main {
public static void main(String[] args) {
if(args.length == 0) {
//if this runs, there is none cmd arguments
} else {
//and here only if haves cmd arguments
}
}
}