dongxian1699 2014-04-01 14:44
浏览 568
已采纳

Golang:将[] int写入文件

I have some data in p []int, I want to save/load it to/from file. Should i convert this slice to []byte and use (if yes, how?)

func (f *File) Read(b []byte) (n int, err Error)
func (f *File) Write(b []byte) (n int, err error)

or there are other way to save []int to file?

I read this How to read/write from/to file using golang?, and it didn't help.

  • 写回答

2条回答 默认 最新

  • doujiufutaog59220 2014-04-01 14:57
    关注

    If interchanging the format (between languages other than go) or reading it as a stream is not important to you, just use the gob encoder and decoder.

    http://golang.org/pkg/encoding/gob/

    The idea is that you create an encoder around a writer, or a decoder around a reader, and then just ask them to encode or decode a struct. Encoding goes something like this:

    p := []int{1,2,3,4}
    
    encoder := gob.NewEncoder(myFileWriter)
    err = encoder.Encode(p)
    if err != nil {
        panic(err)
    }
    

    decoding works just the opposite way:

    decoder := gob.NewDecoder(myFileReader)
    p := []int{}
    
    err = decoder.Decode(&p)
    if err != nil {
             panic(err)
    }
    

    Alternatively, you can use similar methods available in the standard library, for storing the data as JSON or XML, which allow you more easily to debug things, and open the data from other languages (at the cost of size and efficiency).

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 阿里云python代码求解
  • ¥20 有人知道这种图怎么画吗?
  • ¥15 pyqt6如何引用qrc文件加载里面的的资源
  • ¥15 安卓JNI项目使用lua上的问题
  • ¥20 RL+GNN解决人员排班问题时梯度消失
  • ¥15 统计大规模图中的完全子图问题
  • ¥15 使用LM2596制作降压电路,一个能运行,一个不能
  • ¥60 要数控稳压电源测试数据
  • ¥15 能帮我写下这个编程吗
  • ¥15 ikuai客户端l2tp协议链接报终止15信号和无法将p.p.p6转换为我的l2tp线路