GO语言"encoding/xml"包中"Encoder"类型的用法及代码示例。
编码器将 XML 数据写入输出流。
用法:
type Encoder struct {
// contains filtered or unexported fields
}
例子:
package main
import (
"encoding/xml"
"fmt"
"os"
)
func main() {
type Address struct {
City, State string
}
type Person struct {
XMLName xml.Name `xml:"person"`
Id int `xml:"id,attr"`
FirstName string `xml:"name>first"`
LastName string `xml:"name>last"`
Age int `xml:"age"`
Height float32 `xml:"height,omitempty"`
Married bool
Address
Comment string `xml:",comment"`
}
v := &Person{Id: 13, FirstName: "John", LastName: "Doe", Age: 42}
v.Comment = " Need more details. "
v.Address = Address{"Hanga Roa", "Easter Island"}
enc := xml.NewEncoder(os.Stdout)
enc.Indent(" ", " ")
if err := enc.Encode(v); err != nil {
fmt.Printf("error: %v\n", err)
}
}
输出:
<person id="13"> <name> <first>John</first> <last>Doe</last> </name> <age>42</age> <Married>false</Married> <City>Hanga Roa</City> <State>Easter Island</State> <!-- Need more details. --> </person>
相关用法
- GO Encode用法及代码示例
- GO EncodeToString用法及代码示例
- GO EncodeRune用法及代码示例
- GO Encoding.Decode用法及代码示例
- GO Encoding.EncodeToString用法及代码示例
- GO Encoding.DecodeString用法及代码示例
- GO Encoding.Encode用法及代码示例
- GO EscapeString用法及代码示例
- GO Expm1用法及代码示例
- GO Exp2用法及代码示例
- GO Errorf用法及代码示例
- GO Expand用法及代码示例
- GO Equal用法及代码示例
- GO Exp用法及代码示例
- GO Ext用法及代码示例
- GO ErrReader用法及代码示例
- GO ExpandEnv用法及代码示例
- GO EqualFold用法及代码示例
- GO PutUvarint用法及代码示例
- GO Scanner.Scan用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Encoder。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。