如何在Golang中将[]byte类型的XML转换为JSON输出

huangapple go评论83阅读模式
英文:

How to convert []byte XML to JSON output in Golang

问题

在Golang中,有一种方法可以将XML([]byte)转换为JSON输出。您可以尝试使用encoding/xml包中的Unmarshal函数进行转换。以下是您提供的代码示例的修改版本:

import (
	"encoding/xml"
	"encoding/json"
	"io/ioutil"
	"net/http"
	"bytes"
	"github.com/emicklei/go-restful"
)

// POST 
func (u *UserResource) authenticateUser(request *restful.Request, response *restful.Response) {
	App := new(Api)
	App.url = "http://api.com/api"
	usr := new(User)
	err := request.ReadEntity(usr)
	if err != nil {
		response.AddHeader("Content-Type", "application/json")
		response.WriteErrorString(http.StatusInternalServerError, err.Error())
		return
	}

	buf := []byte("<app version=\"1.0\"><request>1111</request></app>")
	r, err := http.Post(App.url, "text/plain", bytes.NewBuffer(buf))
	if err != nil {
		response.AddHeader("Content-Type", "application/json")
		response.WriteErrorString(http.StatusInternalServerError, err.Error())
		return
	}
	defer r.Body.Close()
	body, err := ioutil.ReadAll(r.Body)
	if err != nil {
		response.AddHeader("Content-Type", "application/json")
		response.WriteErrorString(http.StatusInternalServerError, err.Error())
		return
	}

	// 将XML转换为JSON
	var result map[string]interface{}
	err = xml.Unmarshal(body, &result)
	if err != nil {
		response.AddHeader("Content-Type", "application/json")
		response.WriteErrorString(http.StatusInternalServerError, err.Error())
		return
	}

	// 将JSON转换为[]byte
	jsonData, err := json.Marshal(result)
	if err != nil {
		response.AddHeader("Content-Type", "application/json")
		response.WriteErrorString(http.StatusInternalServerError, err.Error())
		return
	}

	response.AddHeader("Content-Type", "application/json")
	response.WriteHeader(http.StatusCreated)
	response.Write(jsonData)
}

以上代码将XML响应转换为JSON,并在进行一些操作后输出。您需要导入encoding/xmlencoding/json包,并对XML和JSON进行相应的解析和编码。

英文:

Is there a way to convert XML ([]byte) to JSON output in Golang?

I've got below function where body is []byte but I want to transform this XML response to JSON after some manipulation. I've tried Unmarshal in xml package with no success:

// POST 
func (u *UserResource) authenticateUser(request *restful.Request, response *restful.Response) {
App := new(Api)
App.url = &quot;http://api.com/api&quot;
usr := new(User)
err := request.ReadEntity(usr)
if err != nil {
response.AddHeader(&quot;Content-Type&quot;, &quot;application/json&quot;)
response.WriteErrorString(http.StatusInternalServerError, err.Error())
return
}
buf := []byte(&quot;&lt;app version=\&quot;1.0\&quot;&gt;&lt;request&gt;1111&lt;/request&gt;&lt;/app&gt;&quot;)
r, err := http.Post(App.url, &quot;text/plain&quot;, bytes.NewBuffer(buf))
if err != nil {
response.AddHeader(&quot;Content-Type&quot;, &quot;application/json&quot;)
response.WriteErrorString(http.StatusInternalServerError, err.Error())
return
}
defer r.Body.Close()
body, err := ioutil.ReadAll(r.Body)
response.AddHeader(&quot;Content-Type&quot;, &quot;application/json&quot;)
response.WriteHeader(http.StatusCreated)
//	err = xml.Unmarshal(body, &amp;usr)
//	if err != nil {
//		fmt.Printf(&quot;error: %v&quot;, err)
//		return
//	}
response.Write(body)
//	fmt.Print(&amp;usr.userName)
}

I'm also using Go-restful package

答案1

得分: 13

将XML输入转换为JSON输出的通用答案可能如下所示:

package main

import (
	"encoding/json"
	"encoding/xml"
	"fmt"
)

type DataFormat struct {
	ProductList []struct {
		Sku      string `xml:"sku" json:"sku"`
		Quantity int    `xml:"quantity" json:"quantity"`
	} `xml:"Product" json:"products"`
}

func main() {
	xmlData := []byte(`<?xml version="1.0" encoding="UTF-8"?>
<ProductList>
    <Product>
        <sku>ABC123</sku>
        <quantity>2</quantity>
    </Product>
    <Product>
        <sku>ABC123</sku>
        <quantity>2</quantity>
    </Product>
</ProductList>`)

	data := &DataFormat{}
	err := xml.Unmarshal(xmlData, data)
	if nil != err {
		fmt.Println("Error unmarshalling from XML", err)
		return
	}

	result, err := json.Marshal(data)
	if nil != err {
		fmt.Println("Error marshalling to JSON", err)
		return
	}

	fmt.Printf("%s\n", result)
}

这段代码使用Go语言将XML数据解析为结构体,并将其转换为JSON格式。你可以将XML数据存储在xmlData变量中,然后通过xml.Unmarshal函数将其解析为DataFormat结构体。接下来,使用json.Marshal函数将结构体转换为JSON格式,并将结果打印出来。

英文:

The generic answer to your question of how to convert XML input to JSON output might be something like this:

http://play.golang.org/p/7HNLEUnX-m

package main
import (
&quot;encoding/json&quot;
&quot;encoding/xml&quot;
&quot;fmt&quot;
)
type DataFormat struct {
ProductList []struct {
Sku      string `xml:&quot;sku&quot; json:&quot;sku&quot;`
Quantity int    `xml:&quot;quantity&quot; json:&quot;quantity&quot;`
} `xml:&quot;Product&quot; json:&quot;products&quot;`
}
func main() {
xmlData := []byte(`&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; ?&gt;
&lt;ProductList&gt;
&lt;Product&gt;
&lt;sku&gt;ABC123&lt;/sku&gt;
&lt;quantity&gt;2&lt;/quantity&gt;
&lt;/Product&gt;
&lt;Product&gt;
&lt;sku&gt;ABC123&lt;/sku&gt;
&lt;quantity&gt;2&lt;/quantity&gt;
&lt;/Product&gt;
&lt;/ProductList&gt;`)
data := &amp;DataFormat{}
err := xml.Unmarshal(xmlData, data)
if nil != err {
fmt.Println(&quot;Error unmarshalling from XML&quot;, err)
return
}
result, err := json.Marshal(data)
if nil != err {
fmt.Println(&quot;Error marshalling to JSON&quot;, err)
return
}
fmt.Printf(&quot;%s\n&quot;, result)
}

答案2

得分: 11

如果您需要将一个具有未知结构的XML文档转换为JSON,您可以使用goxml2json

示例:

import (
  // 其他导入...
  xj "github.com/basgys/goxml2json"
)

func (u *UserResource) authenticateUser(request *restful.Request, response *restful.Response) {
  // 从restful.Request中提取数据
  xml := strings.NewReader(`<?xml version="1.0" encoding="UTF-8"?><app version="1.0"><request>1111</request></app>`)

  // 转换
  json, err := xj.Convert(xml)
  if err != nil {
    // 出错了...
  }

  // ... 使用JSON ...
}

注意:我是这个库的作者。

英文:

If you need to convert an XML document to JSON with an unknown struct, you can use goxml2json.

Example :

import (
// Other imports ...
xj &quot;github.com/basgys/goxml2json&quot;
)
func (u *UserResource) authenticateUser(request *restful.Request, response *restful.Response) {
// Extract data from restful.Request
xml := strings.NewReader(`&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&lt;app version=&quot;1.0&quot;&gt;&lt;request&gt;1111&lt;/request&gt;&lt;/app&gt;`)
// Convert
json, err := xj.Convert(xml)
if err != nil {
// Oops...
}
// ... Use JSON ...
}

> Note : I'm the author of this library.

huangapple
  • 本文由 发表于 2014年9月17日 06:45:06
  • 转载请务必保留本文链接:https://go.coder-hub.com/25879570.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定