我是Go语言的新手,我正在尝试解析XML文件。我的目标是通过仅为它们配置一个结构来获取所有config标签的值。不是每个父标记都有单独的结构。下面是XML文件以及我所做的事情。
我的XML文件:
<?xml version="1.0" encoding="UTF-8"?>
<root>
<TestFramework>
<config>
<name>TEST_COMPONENT</name>
<value>FILMS</value>
<description>
Name of the test Films.
</description>
</config>
<config>
<name>TESTER_NAME</name>
<value>abc@xyz.com</value>
<description>
Name or email of the tester.
</description>
</config>
</TestFramework>
<Product>
<config>
<name>PRODUCT_RELEASE</name>
<value>2.1</value>
<description>
Name or email of the tester.
</description>
</config>
<config>
<name>PRODUCT_BUILD</name>
<value>7.1.3182018</value>
<description>
Name or email of the tester.
</description>
</config>
</Product>
</root>
我的Go程序:
package main
import (
"encoding/xml"
"fmt"
"io/ioutil"
"os"
)
type ConfigFile struct {
Configs []Config `xml:"config"`
}
type Config struct {
Name string `xml:"name"`
Value string `xml:"value"`
}
func main() {
xmlFile, err := os.Open("octa_config.xml")
m := make(map[string]string)
if err != nil {
fmt.Println(err)
}else {
fmt.Println("Successfully Opened octa_config.xml")
}
defer xmlFile.Close()
byteValue, _ := ioutil.ReadAll(xmlFile)
var c ConfigFile
xml.Unmarshal(byteValue,&c)
for i := 0; i < len(c.Configs); i++ {
m[c.Configs[i].Name]=c.Configs[i].Value
}
for k,v :=range m{
fmt.Println( k,v)
}
}
我知道我可以制作这样的结构:
type TestFramework struct {
Configs []Config `xml:"TestFramework>config"`
}
但是我不想使用它:
`xml:"TestFramework>config"`
我得到这样的输出:
D:\Go>go run config_nim.go
Successfully Opened octa_config.xml
D:\Go>
答案 0 :(得分:2)
您可以使用procedure TMyHeader.ApplyStyle;
var
objFMX,
inObjFMX: TFMXObject;
LRedPath: TPath;
begin
inherited;
objFMX:=FindStyleResource('red');
if assigned(objFMX) and (objFMX is TSpeedButton) then
begin
for inObjFMX in objFMX.Children do
begin
if inObjFMX is TPath then
begin
LRedPath:=inObjFMX as TPath;
LRedPath.Fill.Color:=TAlphaColorRec.Blue;
Break;
end;
end;
end;
end;
标签选项。
,any