我尝试用自动补全功能编写一个简单的Shell。我使用JLine库。这是我的代码。

public class ConsoleDemo {
    public static void main(String[] args) {
        try {
            ConsoleReader console = new ConsoleReader();
            console.setPrompt(">>> ");
            console.addCompleter(new MyStringsCompleter("a", "aaa", "b", "bbb"));
            String line;
            while ((line = console.readLine()) != null) {
                console.println(line);
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}


问题是当我按tab时,我的应用程序无法完成任何操作。

>>> a [press tab]

如何正确使用它来自动完成输入?

UPD

public class MyStringsCompleter implements Completer {

    private final SortedSet<String> strings = new TreeSet<>();

    public MyStringsCompleter(Collection<String> strings) {
        this.strings.addAll(strings);
    }

    public MyStringsCompleter(String... strings) {
        this(asList(strings));
    }

    @Override
    public int complete(String buffer, int cursor, List<CharSequence> candidates) {
        if (buffer == null) {
            candidates.addAll(strings);
        } else {
            for (String match : strings.tailSet(buffer)) {
                if (!match.startsWith(buffer)) {
                    break;
                }
                candidates.add(match);
            }
        }
        if (candidates.size() == 1) {
            candidates.set(0, candidates.get(0) + " ");
        }
        return candidates.isEmpty() ? -1 : 0;
    }
}

最佳答案

问题出在我的IDE中。当我不通过IDE启动应用程序时,一切正常。因此问题出在IDE中,它以某种方式拦截了控制台输入。

10-02 03:39