我有一个像控制台这样的小程序,它允许通过 JTextField 输入命令。
我写了很多命令,输入被转换为字符串>,如果命令有类似 ping IP 属性(ping 192.168.1.1)我子字符串 5(ping),但现在当我想要几个属性时(命令 atr1 art22 atr333 art4444) 我会得到
String command = "command"; //I can make this one
String attribute1 = "atr1"; //I can make this one
String attribute2 = "atr22";
String attribute3 = "atr333";
依此类推,但是无论该属性的长度如何,它都会给我...因为我可以使用子字符串完成所有操作,但是它会定义长度!