本文整理汇总了Java中com.beust.jcommander.internal.Console类的典型用法代码示例。如果您正苦于以下问题:Java Console类的具体用法?Java Console怎么用?Java Console使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Console类属于com.beust.jcommander.internal包,在下文中一共展示了Console类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: readPwd
import com.beust.jcommander.internal.Console; //导入依赖的package包/类
private static String readPwd() throws IOException {
Console console = JCommander.getConsole();
if (System.console() == null) { // In Eclipse IDE
InputStream in = System.in;
int max = 50;
byte[] bytes = new byte[max];
int length = in.read(bytes);
length--;// last character is \n
if (length > 0) {
byte[] newBytes = new byte[length];
System.arraycopy(bytes, 0, newBytes, 0, length);
return new String(newBytes, Charsets.UTF_8);
} else {
return null;
}
} else { // Outside Eclipse IDE
return new String(console.readPassword(false));
}
}