内容简介:A Swift command-line tool to easily convert XML format to JSON.First specify where the xml files are located through
XMLJSON
A Swift command-line tool to easily convert XML format to JSON.
Requirements
- Good Mood
Usage
$ xmljson -h OVERVIEW: Convert XML Format to JSON Format. USAGE: xmljson --dir <dir> [--files <files> ...] [--output <output>] [--verbose] [--all] OPTIONS: -d, --dir <dir> Absolute path to a directory containing the xml files. -f, --files <files> XML files to be parsed. -o, --output <output> [Optinal] JSON file(s) output directory. -v, --verbose Show extra logging for debugging purposes. -a, --all Convert all XML files present in the specifed directory. -h, --help Show help information.
First specify where the xml files are located through --dir
argument (Manadatory) Then you can specify the files to be converted in through --files
argument you can pass as much as you want
$ xmljson -d ~/xml/files/dir - file1.xml filen.xml --verbose
If you want to convert all the XML files present in the directory, pass the --dir
argument and --all
flag only.
$ xmljson -d ~/xml/files/dir --all
if you would like to change the output directory pass it to --output
.
$ xmljson -d ~/xml/files/dir -o ~/path/to/output/dir --all
Sample
XML Input
?xml version="1.0" encoding="UTF-8"?> <bookstore> <book category="cooking"> <title lang="en">Everyday 1</title> <author>Giada De Laurentiis</author> <year>2005</year> <price>30.00</price> </book> <book category="web"> <title lang="en">Learning XML</title> <author>Erik T. Ray</author> <year>2003</year> <price>39.95</price> </book> </bookstore>
JSON Output
[ { "author" : "Giada De Laurentiis", "title" : { "lang" : "en", "text" : "Everyday 1" }, "year" : "2005", "category" : "cooking", "price" : "30.00" }, { "author" : "Erik T. Ray", "title" : { "lang" : "en", "text" : "Learning XML" }, "year" : "2003", "category" : "web", "price" : "39.95" } ]
Installation using HomeBrew
You can install xmljson using homebrew as follows:
$ brew tap engali94/formulae $ brew install xmljson
Installation using Make
You can install xmljson using make as follows:
$ git clone https://github.com/engali94/XMLJson.git $ cd XMLJson $ make install
Development
-
cd
into the repository -
run
swift package generate-xcodeproj
-
Run the following command to try it out:
swift run XMLJson --help
License
XMLJson is released under the MIT license. See LICENSE for more information.
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
从莎草纸到互联网:社交媒体2000年
[英]汤姆·斯丹迪奇 / 林华 / 中信出版社 / 2015-12 / 58.00元
【内容简介】 社交媒体其实并不是什么新鲜的东西。从西塞罗和其他古罗马政治家用来交换信息的莎草纸信,到宗教改革、美国革命、法国大革命期间印制的宣传小册子,过去人类跟同伴交流信息的方式依然影响着现代社会。在报纸、广播和电视在散播信息上面统治了几十年后,互联网的出现使社交媒体重新变成人们与朋友分享信息的有力工具,并推动公共讨论走向一个新的模式。 汤姆•斯丹迪奇在书中提醒我们历史上的社交网络其......一起来看看 《从莎草纸到互联网:社交媒体2000年》 这本书的介绍吧!