使用JLine进行Java控制台自动完成

时间:2015-01-28 14:32:33

标签: java autocomplete 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;
    }
}

2 个答案:

答案 0 :(得分:2)

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

答案 1 :(得分:1)

简单地在StringsCompleter中添加字符串将无法实现您想要的效果。您必须使用complete中的StringsCompleter方法。可以找到一个示例 here