dsds33222 2017-02-06 16:07
浏览 783
已采纳

使用Go将结构转换为[] byte

I have a packet structure and I wish to serialize it into binary so I can send it through the wire.

There are many packet structures but I'll give the login packet as an example:

login struct {
    seq      uint8
    id       uint16
    username [16]string
    password [16]string
    unknown1 [16]byte
}

I've read somewhere that you can't use binary.Write for non-fixed size structures. But I believe my structure is fixed size (correct me if I'm wrong, I could be very wrong).

Now using this code:

var buf bytes.Buffer
x := login{
    seq:      2,
    id:       1,
    username: [16]string{"username"},
    password: [16]string{"password"},
}
err := binary.Write(&buf, binary.LittleEndian, x)
if err != nil {
    log.Fatalln(err)
}

Gives me the error: binary.Write: invalid type main.login

Now, is there a way to fix this? Is there an alternative approach? Much like how you can use structs in C and send it through the network.

  • 写回答

2条回答 默认 最新

  • douzheng0702 2017-02-06 16:17
    关注

    You have two errors in your code. Firstly, your struct fields should be exported for encoding/binary to see it.

    Secondly, [16]string means an array of 16 strings, not a 16-byte string. So your struct should look like this:

    type login struct {
        Seq      uint8
        ID       uint16
        Username [16]byte
        Password [16]byte
        Unknown1 [16]byte
    }
    

    Then it works: https://play.golang.org/p/Nq8fRqgkcp.

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

报告相同问题?

悬赏问题

  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法
  • ¥15 可否在不同线程中调用封装数据库操作的类