我将从服务器返回的 json 文件转换为 perl 数据结构
我能够将硬编码的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我看来,解码不需要列表,它需要标量字符串。
你可以读取该文件:
It looks to me like
decode
doesn't want a list, it wants a scalar string.You could slurp the file: