Home >Backend Development >Golang >How Can I Handle ISO-8859-1 Encoded XML in Go?
Decoding XML Inputs Encoded with ISO-8859-1 in Go
When parsing XML inputs that are not encoded in UTF-8, the Unmarshal function within the xml package may necessitate the use of a CharsetReader.
Locating a CharsetReader
A CharsetReader can be obtained through the charset package provided by Go's standard library. Specifically, the following code demonstrates how to use the NewReaderLabel function to create a CharsetReader:
import ( "bytes" "encoding/xml" "golang.org/x/net/html/charset" ) reader := bytes.NewReader(theXml) decoder := xml.NewDecoder(reader) decoder.CharsetReader = charset.NewReaderLabel
This code initializes a reader using the bytes.NewReader function and then instantiates a decoder using xml.NewDecoder. Finally, the decoder's CharsetReader property is set to charset.NewReaderLabel, allowing the decoder to handle ISO-8859-1 encoded XML inputs.
The above is the detailed content of How Can I Handle ISO-8859-1 Encoded XML in Go?. For more information, please follow other related articles on the PHP Chinese website!