在 Golang 中解组简单 xml 时出错

2024-01-05

我正在尝试用 Go 编写一个非常简单的解析器来处理一个大的 xml 文件(dblp.xml https://dblp.uni-trier.de/),其摘录如下:

<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE dblp SYSTEM "dblp.dtd">
<dblp>
    <article key="journals/cacm/Gentry10" mdate="2010-04-26">
        <author>Craig Gentry</author>
        <title>Computing arbitrary functions of encrypted data.</title>
        <pages>97-105</pages>
        <year>2010</year>
        <volume>53</volume>
        <journal>Commun. ACM</journal>
        <number>3</number>
        <ee>http://doi.acm.org/10.1145/1666420.1666444</ee>
        <url>db/journals/cacm/cacm53.html#Gentry10</url>
    </article>

    <article key="journals/cacm/Gentry10" mdate="2010-04-26">
        <author>Craig Gentry Number2</author>
        <title>Computing arbitrary functions of encrypted data.</title>
        <pages>97-105</pages>
        <year>2010</year>
        <volume>53</volume>
        <journal>Commun. ACM</journal>
        <number>3</number>
        <ee>http://doi.acm.org/10.1145/1666420.1666444</ee>
        <url>db/journals/cacm/cacm53.html#Gentry10</url>
    </article>
</dblp>

我的代码如下,看起来发生了一些事情xml.Unmarshal(byteValue, &articles),因为我无法在输出中获取任何 xml 值。你能帮我解决我的代码有什么问题吗?

package main

import (
    "encoding/xml"
    "fmt"
    "io/ioutil"
    "os"
)

// Contains the array of articles in the dblp xml
type Dblp struct {
    XMLName xml.Name  `xml:"dblp"`
    Dblp    []Article `xml:"article"`
}

// Contains the article element tags and attributes
type Article struct {
    XMLName xml.Name `xml:"article"`
    Key     string   `xml:"key,attr"`
    Year    string   `xml:"year"`
}

func main() {
    xmlFile, err := os.Open("TestDblp.xml")
    if err != nil {
        fmt.Println(err)
    }

    fmt.Println("Successfully Opened TestDblp.xml")
    // defer the closing of our xmlFile so that we can parse it later on
    defer xmlFile.Close()

    // read our opened xmlFile as a byte array.
    byteValue, _ := ioutil.ReadAll(xmlFile)

    var articles Dblp
    fmt.Println("Entered var")
    // we unmarshal our byteArray which contains our
    // xmlFiles content into 'users' which we defined above
    xml.Unmarshal(byteValue, &articles)

    for i := 0; i < len(articles.Dblp); i++ {
        fmt.Println("Entered loop")
        fmt.Println("get title: " + articles.Dblp[i].Key)
        fmt.Println("get year: " + articles.Dblp[i].Year)
    }

}

您的代码中有特定行返回错误

xml.Unmarshal(byteValue, &articles)

如果你把它改成

err = xml.Unmarshal(byteValue, &articles)
if err != nil {
    fmt.Println(err.Error())
}

您会看到报告错误:xml: encoding "ISO-8859-1" declared but Decoder.CharsetReader is nil。作为最佳实践,您应该始终检查是否返回错误。

要解决此问题,您可以删除编码属性(encoding="ISO-8859-1") 来自 XML 或稍微更改一下解组代码:

package main

import (
    "encoding/xml"
    "fmt"
    "io"
    "os"

    "golang.org/x/text/encoding/charmap"
)

// Contains the array of articles in the dblp xml
type Dblp struct {
    XMLName xml.Name  `xml:"dblp"`
    Dblp    []Article `xml:"article"`
}

// Contains the article element tags and attributes
type Article struct {
    XMLName xml.Name `xml:"article"`
    Key     string   `xml:"key,attr"`
    Year    string   `xml:"year"`
}

func main() {
    xmlFile, err := os.Open("dblp.xml")
    if err != nil {
        fmt.Println(err)
    }

    fmt.Println("Successfully Opened TestDblp.xml")
    // defer the closing of our xmlFile so that we can parse it later on
    defer xmlFile.Close()

    var articles Dblp
    decoder := xml.NewDecoder(xmlFile)
    decoder.CharsetReader = makeCharsetReader
    err = decoder.Decode(&articles)
    if err != nil {
        fmt.Println(err)
    }

    for i := 0; i < len(articles.Dblp); i++ {
        fmt.Println("Entered loop")
        fmt.Println("get title: " + articles.Dblp[i].Key)
        fmt.Println("get year: " + articles.Dblp[i].Year)
    }
}

func makeCharsetReader(charset string, input io.Reader) (io.Reader, error) {
    if charset == "ISO-8859-1" {
        // Windows-1252 is a superset of ISO-8859-1, so should do here
        return charmap.Windows1252.NewDecoder().Reader(input), nil
    }
    return nil, fmt.Errorf("Unknown charset: %s", charset)
}

运行上述程序的结果是:

Successfully Opened TestDblp.xml
Entered var
Entered loop
get title: journals/cacm/Gentry10
get year: 2010
Entered loop
get title: journals/cacm/Gentry10
get year: 2010
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

在 Golang 中解组简单 xml 时出错 的相关文章

随机推荐