dongyun65343 2016-05-07 00:27
浏览 97

golang将套接字连接到Stdin / Stdout

What is the best way to attach a socket to Stdin/Stdout. I know we can redirect the stdin/Stdout to any any file descriptor but how can we do the same with sockets. (like how socat works) ?

  • 写回答

1条回答 默认 最新

  • doucuo4413 2016-05-09 02:03
    关注

    Well the socket types in Go implement the io.Writer interface, and os.Stdin implements the io.Reader, so my first guess would be to try out bufio.Writer. It would probably look something like:

    package main
    
    import (
        "bufio"
        "os"
    )
    
    func main() {
        socket := getSocket() // left as an exercise for you to implement
        writer := bufio.NewWriter(socket)
        writer.ReadFrom(os.Stdin)
        // do something to determine when to stop
    }
    
    评论

报告相同问题?

悬赏问题

  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 AT89C51控制8位八段数码管显示时钟。
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 下图接收小电路,谁知道原理
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测