Java 使用 JLine 的控制台自动补全

Java console autocompletion with JLine

我试着写一个简单的 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;
    }
}

简单地在 StringsCompleter 中添加字符串不会完成您想要的。您必须使用 StringsCompleter 中的 complete 方法。可以找到一个例子 here .

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