dongshou1856 2019-04-11 21:58
浏览 177
已采纳

在Golang中记录并查找CSV文件位置

I need to read a CSV file and record the locations of lines with certain values into an array, then later go back and retrieve those lines in no particular order and with good performance, so random access.

My program uses csv.NewReader(file), but I see no way to get or set the file offset that it uses. I tried file.Seek(0,io.SeekCurrent) to return the file position, but it doesn't change between calls to reader.Read(). I also tried fmt.Println("+v +v ",reader,file) to see if anything stores the reader's file position, but I don't see it. I also don't know the best way to use the file position if I do find it.

Here's what I need to do:

file,_ = os.Open("stuff.csv")
reader = csv.NewReader(file)

//read file and record locations
for {
    line,_ = reader.Read()
    if wantToRememberLocation(line) {
         locations = append(locations, getLocation()) //need this function
    }
}

//then revisit certain lines
for {
    reader.GoToLine(locations[random])  //need this function
    line,_ = reader.Read()
    doStuff(line)
}

Is there even a way to do this with the csv library, or will I have to write my own using more primitive file io functions?

  • 写回答

2条回答 默认 最新

  • doucan9079 2019-04-12 22:24
    关注

    Here's a solution using TeeReader. This example just saves all the positions and goes back and rereads some of them.

    //set up some vars and readers to record position and length of each line
    type Record struct {
        Pos int64
        Len int 
    }
    records := make([]Record,1)
    var buf bytes.Buffer
    var pos int64
    file,_ := Open("stuff.csv")
    tr := io.TeeReader(file, &buf)
    cr := csv.NewReader(tr)
    
    //read first row and get things started
    data,_ := cr.Read()
    dostuff(data)
    //length of current row determines position of next
    lineBytes,_ := buf.ReadBytes('
    ')
    length := len(lineBytes)
    pos += int64(length)
    records[0].Len = length
    records = append(records, Record{ Pos: pos })
    
    for i:=1;;i++ {
        //read csv data
        data,err = c.Read()
        if err != nil {break}
        dostuff(data)
        //record length and position
        lineBytes,_ = buf.ReadBytes('
    ')
        lenth = len(lineBytes)
        pos += int64(length)
        records[i].Len = length
        records = append(records, Record{ Pos: pos })
    }
    
    //prepare individual line reader
    line := make([]byte,1000)
    lineReader := bytes.NewReader(line)
    
    //read random lines from file
    for {
        i := someLineNumber()
        //use original file reader to fill byte slice with line
        file.ReadAt(line[:records[i].Len], records[i].Pos)
        //need new lineParser to start at beginning every time
        lineReader.Seek(0,0)
        lineParser := csv.NewReader(lineReader)
        data,_ = lineParser.Read()
        doStuff(data)
    }
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作