是否有类似于getchar
的功能能够在控制台中处理标签按下?我想在我的控制台应用程序中完成某些任务。
答案 0 :(得分:21)
C的getchar()
示例:
#include <stdio.h>
void main()
{
char ch;
ch = getchar();
printf("Input Char Is :%c",ch);
}
去等效:
package main
import (
"bufio"
"fmt"
"os"
)
func main() {
reader := bufio.NewReader(os.Stdin)
input, _ := reader.ReadString('\n')
fmt.Printf("Input Char Is : %v", string([]byte(input)[0]))
// fmt.Printf("You entered: %v", []byte(input))
}
最后一条注释行显示当你按tab
时,第一个元素是U + 0009('CHARACTER TABULATION')。
但是根据您的需要(检测标签)C getchar()
不合适,因为它需要用户点击输入。你需要的是像@miku提到的ncurses的getch()/ readline / jLine。有了这些,你实际上等待一次击键。
所以你有多种选择:
使用ncurses
/ readline
绑定,例如https://code.google.com/p/goncurses/或类似https://github.com/nsf/termbox
点击您自己的http://play.golang.org/p/plwBIIYiqG作为起点
使用os.Exec
运行stty或jLine。
参考:
https://groups.google.com/forum/?fromgroups=#!topic/golang-nuts/zhBE5MH4n-Q
https://groups.google.com/forum/?fromgroups=#!topic/golang-nuts/S9AO_kHktiY
https://groups.google.com/forum/?fromgroups=#!topic/golang-nuts/icMfYF8wJCk
答案 1 :(得分:15)
假设您需要无缓冲输入(无需点击输入),这可以在UNIX系统上完成工作:
package main
import (
"fmt"
"os"
"os/exec"
)
func main() {
// disable input buffering
exec.Command("stty", "-F", "/dev/tty", "cbreak", "min", "1").Run()
// do not display entered characters on the screen
exec.Command("stty", "-F", "/dev/tty", "-echo").Run()
// restore the echoing state when exiting
defer exec.Command("stty", "-F", "/dev/tty", "echo").Run()
var b []byte = make([]byte, 1)
for {
os.Stdin.Read(b)
fmt.Println("I got the byte", b, "("+string(b)+")")
}
}
答案 2 :(得分:5)
围绕GNU readline有一些包装项目,例如:
但我不确定,它们的功能如何。另一种方式可能是终端仿真,请参阅:
答案 3 :(得分:5)
感谢Paul Rademacher - 这是有效的(至少在Mac上):
package main
import (
"bytes"
"fmt"
"github.com/pkg/term"
)
func getch() []byte {
t, _ := term.Open("/dev/tty")
term.RawMode(t)
bytes := make([]byte, 3)
numRead, err := t.Read(bytes)
t.Restore()
t.Close()
if err != nil {
return nil
}
return bytes[0:numRead]
}
func main() {
for {
c := getch()
switch {
case bytes.Equal(c, []byte{3}):
return
case bytes.Equal(c, []byte{27, 91, 68}): // left
fmt.Println("LEFT pressed")
default:
fmt.Println("Unknown pressed", c)
}
}
return
}
答案 4 :(得分:4)
试试这个:
https://github.com/paulrademacher/climenu/blob/master/getchar.go
这里的其他答案不起作用,并且go-termbox太重了(它想要接管整个终端窗口)。
答案 5 :(得分:1)
这里的其他答案建议如下:
使用cgo
os.Exec
of stty
使用使用/dev/tty
使用GNU readline软件包
但是,对于简单的情况,仅使用Go Project's Sub-repositories中的程序包就很容易。
基本上,使用terminal.MakeRaw
和terminal.Restore
将标准输入设置为原始模式(检查错误,例如,如果stdin不是终端);那么您可以直接从os.Stdin
读取字节,也可以通过bufio.Reader
读取字节(以提高效率)。
例如,如下所示:
package main
import (
"bufio"
"log"
"os"
"golang.org/x/crypto/ssh/terminal"
)
func main() {
// fd 0 is stdin
state, err := terminal.MakeRaw(0)
if err != nil {
log.Fatalln("setting stdin to raw:", err)
}
defer func() {
if err := terminal.Restore(0, state); err != nil {
log.Println("warning, failed to restore terminal:", err)
}
}()
in := bufio.NewReader(os.Stdin)
for {
r, _, err := in.ReadRune()
if err != nil {
log.Println("stdin:", err)
break
}
fmt.Printf("read rune %q\r\n", r)
if r == 'q' {
break
}
}
}
答案 6 :(得分:0)
1-您可以使用C.getch()
:
这适用于Windows命令行,只读一个字符而不输入:
(在shell(终端)内运行输出二进制文件,而不是在管道或编辑器内。)
package main
//#include<conio.h>
import "C"
import "fmt"
func main() {
c := C.getch()
fmt.Println(c)
}
2-对于Linux(在Ubuntu上测试):
package main
/*
#include <stdio.h>
#include <unistd.h>
#include <termios.h>
char getch(){
char ch = 0;
struct termios old = {0};
fflush(stdout);
if( tcgetattr(0, &old) < 0 ) perror("tcsetattr()");
old.c_lflag &= ~ICANON;
old.c_lflag &= ~ECHO;
old.c_cc[VMIN] = 1;
old.c_cc[VTIME] = 0;
if( tcsetattr(0, TCSANOW, &old) < 0 ) perror("tcsetattr ICANON");
if( read(0, &ch,1) < 0 ) perror("read()");
old.c_lflag |= ICANON;
old.c_lflag |= ECHO;
if(tcsetattr(0, TCSADRAIN, &old) < 0) perror("tcsetattr ~ICANON");
return ch;
}
*/
import "C"
import "fmt"
func main() {
fmt.Println(C.getch())
fmt.Println()
}
请参阅:
What is Equivalent to getch() & getche() in Linux?
Why can't I find <conio.h> on Linux?
3-这也有效,但需要&#34;输入&#34;:
package main
import (
"bufio"
"fmt"
"os"
)
func main() {
r := bufio.NewReader(os.Stdin)
c, err := r.ReadByte()
if err != nil {
panic(err)
}
fmt.Println(c)
}
答案 7 :(得分:-3)
您也可以使用ReadRune:
reader := bufio.NewReader(os.Stdin)
// ...
char, _, err := reader.ReadRune()
if err != nil {
fmt.Println("Error reading key...", err)
}
一个符文类似于一个角色,因为GoLang实际上没有字符,以便尝试并支持多种语言/ unicode /等。