當前位置: 首頁>>代碼示例>>Java>>正文


Java ConsoleReader.readCharacter方法代碼示例

本文整理匯總了Java中jline.console.ConsoleReader.readCharacter方法的典型用法代碼示例。如果您正苦於以下問題:Java ConsoleReader.readCharacter方法的具體用法?Java ConsoleReader.readCharacter怎麽用?Java ConsoleReader.readCharacter使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在jline.console.ConsoleReader的用法示例。


在下文中一共展示了ConsoleReader.readCharacter方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: printCandidates

import jline.console.ConsoleReader; //導入方法依賴的package包/類
public static void printCandidates(ConsoleReader reader, Collection<CharSequence> candidates) throws IOException {
    HashSet distinct = new HashSet(candidates);
    if(distinct.size() > reader.getAutoprintThreshold()) {
        reader.print(Messages.DISPLAY_CANDIDATES.format(candidates.size()));
        reader.flush();
        String i$ = Messages.DISPLAY_CANDIDATES_NO.format();
        String next = Messages.DISPLAY_CANDIDATES_YES.format();
        char[] allowed = new char[]{next.charAt(0), i$.charAt(0)};

        int copy;
        while((copy = reader.readCharacter(allowed)) != -1){
            String tmp = new String(new char[]{(char) copy});
            if(i$.startsWith(tmp)) {
                reader.println();
                return;
            }

            if(next.startsWith(tmp)) {
                break;
            }

            reader.beep();
        }
    }

    if(distinct.size() != candidates.size()) {
        ArrayList copy1 = new ArrayList();
        Iterator i$1 = ((Collection) candidates).iterator();

        while(i$1.hasNext()){
            CharSequence next1 = (CharSequence) i$1.next();
            if(!copy1.contains(next1)) {
                copy1.add(next1);
            }
        }

        candidates = copy1;
    }

    reader.println();

    // clear candidates
    Collection<CharSequence> clearedCandidates = new ArrayList<>();
    for(CharSequence candidate : candidates) {
        String str = candidate + "";
        String[] spl = str.split(" ");
        if(spl.length != 1) {
            str = spl[spl.length - 1];
        }
        clearedCandidates.add(str);
    }

    reader.printColumns(clearedCandidates);
}
 
開發者ID:Superioz,項目名稱:MooProject,代碼行數:55,代碼來源:CandidateCompletionHandler.java


注:本文中的jline.console.ConsoleReader.readCharacter方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。