内容

名称

json_pp - JSON::PP 命令行工具

概要

json_pp [-v] [-f from_format] [-t to_format] [-json_opt options_to_json1[,options_to_json2[,...]]]

描述

json_pp 在一些输入和输出格式之间进行转换(其中一个是 JSON)。该程序从 json_xs 复制并修改而来。

默认输入格式为 json,默认输出格式为带有 pretty 选项的 json。

选项

-f

-f from_format

从 STDIN 读取给定格式的数据。

格式类型

json

作为 JSON

eval

作为 Perl 代码

-t

将数据以给定格式写入 STDOUT。

null

不执行任何操作。

json

作为 JSON

dumper

作为 Data::Dumper

-json_opt

JSON::PP 的选项

可接受的选项是

ascii latin1 utf8 pretty indent space_before space_after relaxed canonical allow_nonref
allow_singlequote allow_barekey allow_bignum loose escape_slash indent_length

多个选项必须用逗号分隔

Right: -json_opt pretty,canonical

Wrong: -json_opt pretty -json_opt canonical

-v

详细选项,但实际上目前没有作用。

-V

打印版本并退出。

示例

$ perl -e'print q|{"foo":"あい","bar":1234567890000000000000000}|' |\
   json_pp -f json -t dumper -json_opt pretty,utf8,allow_bignum

$VAR1 = {
          'bar' => bless( {
                            'value' => [
                                         '0000000',
                                         '0000000',
                                         '5678900',
                                         '1234'
                                       ],
                            'sign' => '+'
                          }, 'Math::BigInt' ),
          'foo' => "\x{3042}\x{3044}"
        };

$ perl -e'print q|{"foo":"あい","bar":1234567890000000000000000}|' |\
   json_pp -f json -t dumper -json_opt pretty

$VAR1 = {
          'bar' => '1234567890000000000000000',
          'foo' => "\x{e3}\x{81}\x{82}\x{e3}\x{81}\x{84}"
        };

参见

JSON::PPjson_xs

作者

Makamaka Hannyaharamitu,<makamaka[at]cpan.org>

版权和许可

版权所有 2010 Makamaka Hannyaharamitu

此库是自由软件;您可以根据与 Perl 本身相同的条款重新分发和/或修改它。