doumaogui5937 2014-06-21 08:06 采纳率: 100%
浏览 3266
已采纳

用Golang net.Conn.Read读取整个数据出错

我在Go中构建了一个网络应用程序,我看到Conn.Read读取一个有限的字节数组,这个数组是我用make([]字节,2048)创建的,现在的问题是我不知道内容的确切长度,所以它可能太多或者不够。

我的问题是,我如何才能读到确切的数据量?我想我得用bufio,但我不确定。能不能行得通。

  • 写回答

3条回答 默认 最新

  • doubingjiu3199 2014-06-21 15:45
    关注

    It highly depends on what you're trying to do, and what kind of data you're expecting, for example if you just want to read until the EOF you could use something like this:

    func main() {
        conn, err := net.Dial("tcp", "google.com:80")
        if err != nil {
            fmt.Println("dial error:", err)
            return
        }
        defer conn.Close()
        fmt.Fprintf(conn, "GET / HTTP/1.0
    
    ")
    
        buf := make([]byte, 0, 4096) // big buffer
        tmp := make([]byte, 256)     // using small tmo buffer for demonstrating
        for {
            n, err := conn.Read(tmp)
            if err != nil {
                if err != io.EOF {
                    fmt.Println("read error:", err)
                }
                break
            }
            //fmt.Println("got", n, "bytes.")
            buf = append(buf, tmp[:n]...)
    
        }
        fmt.Println("total size:", len(buf))
        //fmt.Println(string(buf))
    }
    

    //edit: for completeness sake and @fabrizioM's great suggestion, which completely skipped my mind:

    func main() {
        conn, err := net.Dial("tcp", "google.com:80")
        if err != nil {
            fmt.Println("dial error:", err)
            return
        }
        defer conn.Close()
        fmt.Fprintf(conn, "GET / HTTP/1.0
    
    ")
        var buf bytes.Buffer
        io.Copy(&buf, conn)
        fmt.Println("total size:", buf.Len())
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 请问一下这个运行结果是怎么来的
  • ¥15 这个复选框什么作用?
  • ¥15 单通道放大电路的工作原理
  • ¥30 YOLO检测微调结果p为1
  • ¥20 求快手直播间榜单匿名采集ID用户名简单能学会的
  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下