我将从服务器返回的 json 文件转换为 perl 数据结构

发布于 2024-12-01 00:32:58 字数 596 浏览 3 评论 0原文

我能够将硬编码的 json 字符串转换为 perl 哈希,但是如果我想将完整的 json 文件转换为以后可以以任何方式解析的 perl 数据结构,我会收到以下错误。 格式错误的 JSON 字符串,既不是数组、对象、数字、字符串也不是原子,位于 json_vellai.pl 第 9 行的字符偏移量 0(“(字符串结尾)”之前)

use JSON::PP;
$json= JSON::PP->new()

$json = $json->allow_singlequote([$enable]);

open (FH, "jsonsample.doc") or die "could not open the file\n";

#$fileContents = do { local $/;<FH>};

@fileContents = <FH>;

#print @fileContents;

$str = $json->allow_barekey->decode(@filecontents);

foreach $t (keys %$str)

{


print "\n $t -- $str->{$t}";

}

这就是我的代码的样子。请帮帮我

I am able to convert a hard coded json string into perl hashes however if i want to convert a complete json file into perl data structures which can be parsed later in any manner, I am getting the folloring error.
malformed JSON string, neither array, object, number, string or atom, at character offset 0 (before "(end of string)") at json_vellai.pl line 9

use JSON::PP;
$json= JSON::PP->new()

$json = $json->allow_singlequote([$enable]);

open (FH, "jsonsample.doc") or die "could not open the file\n";

#$fileContents = do { local $/;<FH>};

@fileContents = <FH>;

#print @fileContents;

$str = $json->allow_barekey->decode(@filecontents);

foreach $t (keys %$str)

{


print "\n $t -- $str->{$t}";

}

This is how my code looks .. plz help me out

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝戈者 2024-12-08 00:32:58

在我看来,解码不需要列表,它需要标量字符串。

你可以读取该文件:

undef $/;
$fileContents = <FH>;

It looks to me like decode doesn't want a list, it wants a scalar string.

You could slurp the file:

undef $/;
$fileContents = <FH>;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文