我正在使用Mac::PropertyList
模块来读取 plist 兼容XML
文件。该函数以 " 形式plist_as_perl()
返回plist/XML
文件内容unblessed perl data structure"
。这是我卡住的地方,因为我不知道如何访问其中包含的数据。
这是程序
use Mac::PropertyList;
print "\nbefore parsing the plist ...";
my $data = Mac::PropertyList::parse_plist_file("abc.xml");
my $pvar = Mac::PropertyList::plist_as_perl($data);
现在如何使用 pvar?
谢谢