我正在尝试重新实现它几年前在 Go中用C 完成的程序该程序应该读取一个类似于“记录”的结构化二进制文件并对记录做一些事情(对记录本身所做的事情与此无关)问题)这样的数据文件由许多记录组成,其中每条记录具有以下定义:REC_LEN U2 // length of record after headerREC_TYPE U1 //a typeREC_SUB U1 //a subtypeREC_LEN x U1 //"payload" 我现在的问题是如何在 Go 的结构中指定可变长度字节 []?我的计划是使用 binary.Read 来读取记录这是我迄今为止在 Go 中尝试过的:type Record struct { rec_len uint16 rec_type uint8 rec_sub uint8 data [rec_len]byte}不幸的是,我似乎无法在同一结构中引用结构的字段,因为出现以下错误:xxxx.go:15: undefined: rec_lenxxxx.go:15: invalid array bound rec_len我很感激任何给我指明正确方向的想法
1 回答
守着星空守着你
TA贡献1799条经验 获得超8个赞
您可以按如下方式读取记录:
var rec Record
// Slurp up the fixed sized header.
var buf [4]byte
_, err := io.ReadFull(r, buf[:])
if err != nil {
// handle error
}
rec.rec_len = binary.BigEndian.Uint16(buf[0:2])
rec.rec_type = buf[2]
rec.rec_sub = buf[3]
// Create the variable part and read it.
rec.data = make([]byte, rec.rec_len)
_, err = io.ReadFull(r, rec.data)
if err != nil {
// handle error
}
- 1 回答
- 0 关注
- 301 浏览
添加回答
举报
0/150
提交
取消