gpt4 book ai didi

xml - 通过 io/ioutil net/http 访问后在 Go 中解析 XML

转载 作者:IT王子 更新时间:2023-10-29 00:44:43 25 4
gpt4 key购买 nike

知道为什么当直接从站点访问 XML 时此解析不起作用,而当我将其复制并粘贴到 var 时却起作用吗?

package main

import (
"encoding/xml"
"fmt"
"strings"
"io/ioutil"
"net/http"
)

type Sitemapindex struct {
Locations []Location `xml:"channel>item"`
}

type Location struct {
Loc string `xml:"title"`
}

func (e Location) String () string {
return fmt.Sprintf(e.Loc)
}

func main() {
resp, _ := http.Get("https://www.sec.gov/Archives/edgar/xbrlrss.all.xml")
bytes, _ := ioutil.ReadAll(resp.Body)
string_body := string(bytes)
var s Sitemapindex
decoder := xml.NewDecoder(strings.NewReader(string_body))
decoder.Strict = false
decoder.Decode(&s)
fmt.Println(s)
}

最佳答案

您正在解析的内容被编码为 windows-1252。要正确解码此数据,XML 解码器需要由可以读取指定字符集的字符集读取器进行参数化。

import (
"encoding/xml"
"golang.org/x/net/html/charset"
)

decoder := xml.NewDecoder(reader)
decoder.CharsetReader = charset.NewReaderLabel
err := decoder.Decode(&s)

我猜想在您尝试解码数据时返回的错误 告诉我们类似的事情。

关于xml - 通过 io/ioutil net/http 访问后在 Go 中解析 XML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49954372/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com