我想在 ubuntu 中使用来自控制台的参数
./myTool -ip 1.2.3.4
我怎样才能在我的代码中使用 1.2.3.4
public static void main(String[] argv) throws Exception
{
for(int i=0;i<argv.length;i++)
{
if (argv[i].equals("-ip"))
{
ping(80,"The ip that i want(1.2.3.4)")
}
}
}