有一个指向 XML 的链接:http : //www.guru.com/rss/jobs/ 当尝试使用 解析 XML 时encoding/xml,得到错误:
第 1 行 XML 语法错误:无效的 XML 名称:t
我知道,此 XML 已损坏,但是我如何忽略它并解析第一项?
XML 的最后一项如下所示:
<item>
<title>Online Ad Posting Data Entry Jobs</t
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Guru Jobs</title>
<link>http://www.guru.com</link>
<description>Guru Jobs</description>
<lastBuildDate>Sun, 15 Nov 2015 11:04:51 GMT</lastBuildDate>
<language>en-us</language>
<atom:link href='http://www.guru.com/rss/jobs/' rel="self" type="application/rss+xml" />
</channel>
</rss>
itle>
<link>http://www.guru.com/jobs/online-ad-posting-data-entry-jobs/1189496</link>
<guid>http://www.guru.com/jobs/online-ad-posting-data-entry-jobs/1189496</guid>
</item>
代码示例:
type Rss2 struct {
ItemList []Item `xml:"channel>item"`
}
type Item struct {
Title string `xml:"title"`
Link string `xml:"link"`
Description string `xml:"description"`
PubDate string `xml:"pubDate"`
GUID string `xml:"guid"`
}
r := Rss2{}
reader := bytes.NewReader(xmlRead)
decoder := xml.NewDecoder(reader)
decoder.CharsetReader = charset.NewReaderLabel
decoder.Strict = false
err = decoder.Decode(&r)
if err != nil { fmt.Printf(err.Error()) }
慕桂英546537
翻翻过去那场雪
相关分类