为什么Perl的JSON模块不能读取或写入文件?

时间:2010-10-25 10:05:49

标签: perl json

我错过了什么,或JSON缺少write_to_file()read_from_file()子程序?

显然,我可以很容易地实现它们,但是因为它们看起来很方便我想知道它们怎么可能不存在。

2 个答案:

答案 0 :(得分:8)

是的,它缺少write_to_file()read_from_file()功能,因为通常,您不会将JSON存储在文件中,而只是将其用于将数据发送回Web客户端。你必须自己实现它,正如你说的那样,没那么多。

答案 1 :(得分:6)

use JSON;

sub read_from_file {
my $json;
{
  local $/; #Enable 'slurp' mode
  open my $fh, "<", "data_in.json";
  $json = <$fh>;
  close $fh;
}
return decode_json($json);
}

sub write_to_file {
my $data  = shift;
open my $fh, ">", "data_out.json";
print $fh encode_json($data);
close $fh;
}