douzheng0702 2013-12-02 03:58
浏览 66
已采纳

转到:使用io.reader从流中跳过字节

What is the best way in Go to skip forward a number of bytes in a stream using io.Reader? That is, is there a function in the standard library which takes a reader and a count that will read and dispose count bytes from the reader?

Example use case:

func DoWithReader(r io.Reader) {      
    SkipNBytes(r, 30);     // Read and dispose 30 bytes from reader
}

I don't need to go backwards in the stream so anything that can work without converting io.Reader to another reader type would be preferred.

  • 写回答

2条回答 默认 最新

  • douyuan4357 2013-12-02 14:24
    关注

    You could use this construction:

    import "io"
    import "io/ioutil"
    
    io.CopyN(ioutil.Discard, yourReader, count)
    

    It copies the requested amount of bytes into an io.Writer that discards what it reads.

    If your io.Reader is an io.Seeker, you might want to consider seeking in the stream to skip the amount of bytes you want to skip:

    import "io"
    import "io/ioutil"
    
    switch r := yourReader.(type) {
    case io.Seeker:
        r.Seek(count, io.SeekCurrent)
    default:
        io.CopyN(ioutil.Discard, r, count)
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题