-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathimp_x2j.go
37 lines (29 loc) · 967 Bytes
/
imp_x2j.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
////////////////////////////////////////////////////////////////////////////
// Program: jsonfiddle
// Purpose: JSON Fiddling
// Authors: Tong Sun (c) 2019-2023, All rights reserved
////////////////////////////////////////////////////////////////////////////
package main
import (
"fmt"
"os"
xj "github.com/basgys/goxml2json"
"github.com/go-easygen/go-flags/clis"
)
////////////////////////////////////////////////////////////////////////////
// x2j
// *** Sub-command: x2j ***
// Exec implements the business logic of command `x2j`
func (x *X2jCommand) Exec(args []string) error {
fmt.Fprintf(os.Stderr, "%s v%s. x2j - XML to JSON\n", progname, version)
// err := ...
// clis.WarnOn("X2j, Exec", err)
fileI := clis.GetInputStream(x.Filei)
defer fileI.Close()
fileO := clis.GetOutputStream(x.Fileo)
defer fileO.Close()
json, err := xj.Convert(fileI)
clis.AbortOn("Convert from xml to json", err)
fmt.Fprintln(fileO, json.String())
return nil
}