-4

我有以下问题:我想从用户那里读取一个字符串,到目前为止它工作得很好但是每次我按下“return”我总是得到以下错误:

Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 0
    at java.lang.String.charAt(String.java:658)
    at Shell.execute(Shell.java:20)
    at Shell.main(Shell.java:55)

这将是代码:

private static void execute(BufferedReader stdin) throws IOException {
    boolean quit = false;
    Field test = new Field();
    while (!quit) {
        System.out.print("ch> ");
        String input = stdin.readLine();
        if (input == null) {
                break;
        }
        String[] tokens = input.trim().split("\\s+");
        tokens[0].toLowerCase();
        char tmp = tokens[0].charAt(0);
        switch (tmp) {
        case 'n':
                test.setPoints(null);
                break;
        case 'a':
                test.add(new Point(Integer.parseInt(tokens[1]), Integer
                        .parseInt(tokens[2])));
                break;
        case 'r':
                test.remove(new Point(Integer.parseInt(tokens[1]), Integer
                        .parseInt(tokens[2])));
                break;
        case 'p':
                System.out.println(test);
                break;
        case 'c':
                System.out.println(test.convexHull());
                break;
        case 'h':
                System.out.println("");
                break;
        case 'q':
                quit = true;
                break;
        default:
                break;
        }
    }
}

谢谢你的帮助。

4

5 回答 5

2

如果在访问第 0 个元素时遇到索引越界异常,则您的字符串可能为空。您需要为此添加一个检查,检查 null 是不够的。

顺便说一句,当你这样写时:

tokens[0].toLowerCase();

我高度怀疑您的令牌[0] 保持不变。由于 java 中的字符串是不可变的,toLowerCase 将不得不返回一个只包含小写字符的新字符串。

于 2012-10-23T09:17:03.503 回答
0

查看tokens拆分后您的数组是否填充了任何字符串,因为我认为这会产生问题。

于 2012-10-23T09:19:13.823 回答
0

如果您按下返回,您的输入字符串为空,请按如下方式更改您的代码以修复它。

while (!quit) {
     System.out.print("ch> ");
     String input = stdin.readLine();
     if (input == null && input.length()<1) { //changed line!
          break;
     }
      String[] tokens = input.trim().split("\\s+");
于 2012-10-23T09:20:27.633 回答
0

这是问题所在

String input = stdin.readLine();
        if (input == null) {
                break;
        }

在这里按下“return”不会给你 null 并且你的 if 条件失败。

代码在下一行失败

tokens[0].toLowerCase();
于 2012-10-23T09:21:14.017 回答
0

很明显,用户输入是空字符串。在拆分之前放置空字符串检查。

if (input == null && input.isEmpty()) {
    break;
}
于 2012-10-23T09:22:59.537 回答