本文整理了Java中jline.WindowsTerminal.setDirectConsole()
方法的一些代码示例,展示了WindowsTerminal.setDirectConsole()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WindowsTerminal.setDirectConsole()
方法的具体详情如下:
包路径:jline.WindowsTerminal
类名称:WindowsTerminal
方法名:setDirectConsole
[英]Whether or not to allow the use of the JNI console interaction.
[中]是否允许使用JNI控制台交互。
代码示例来源:origin: jline/jline
@Override
public void init() throws Exception {
super.init();
setAnsiSupported(Configuration.getBoolean(ANSI, true));
//
// FIXME: Need a way to disable direct console and sysin detection muck
//
setDirectConsole(Configuration.getBoolean(DIRECT_CONSOLE, true));
this.originalMode = getConsoleMode();
setConsoleMode(originalMode & ~ENABLE_ECHO_INPUT.code);
setEchoEnabled(false);
}
代码示例来源:origin: com.typesafe.sbt/incremental-compiler
@Override
public void init() throws Exception {
super.init();
setAnsiSupported(Configuration.getBoolean(ANSI, true));
//
// FIXME: Need a way to disable direct console and sysin detection muck
//
setDirectConsole(Configuration.getBoolean(DIRECT_CONSOLE, true));
this.originalMode = getConsoleMode();
setConsoleMode(originalMode & ~ENABLE_ECHO_INPUT.code);
setEchoEnabled(false);
}
内容来源于网络,如有侵权,请联系作者删除!