为了账号安全,请及时绑定邮箱和手机立即绑定

使用 golang 读取 XML

使用 golang 读取 XML

Go
不负相思意 2021-10-04 18:07:23
我正在尝试用 golang 读取一些 XML。我基于这个有效的例子。https://gist.github.com/kwmt/6135123#file-parsetvdb-go这是我的文件:城堡0.xml<?xml version="1.0" encoding="UTF-8" ?><Channel><Title>test</Title><Description>this is a test</Description></Channel>测试package mainimport (    "encoding/xml"    "fmt"    "io/ioutil"    "os")type Query struct {    Chan Channel `xml:"Channel"`}type Channel struct {    title    string `xml:"Title"`    desc string `xml:"Description"`}func (s Channel) String() string {    return fmt.Sprintf("%s - %d", s.title, s.desc)}func main() {    xmlFile, err := os.Open("Castle0.xml")    if err != nil {        fmt.Println("Error opening file:", err)        return    }    defer xmlFile.Close()    b, _ := ioutil.ReadAll(xmlFile)    var q Query    xml.Unmarshal(b, &q)    fmt.Println(q.Chan)}输出: - %!d(string=)有谁知道我做错了什么?(我这样做是为了学习围棋,所以放轻松:P)
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 375 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信