Perl:无法打开 encmap ascii.enc
我在 FreeBSD 7.4 中运行 perl 5.8.9。我正在使用 XML/Parser.pm 模块。
它曾经有效,但今天我收到以下错误消息: 无法打开 encmap ascii.enc: 没有这样的文件或目录 在 /usr/local/lib/perl5/site_perl/5.8.9/mach/XML/Parser.pm 第 187
行 知道为什么会发生错误吗?多谢。
I'm running perl 5.8.9 in FreeBSD 7.4. And I'm using the XML/Parser.pm module.
It used to work, but today I got the following error message:
Couldn't open encmap ascii.enc:
No such file or directory
at /usr/local/lib/perl5/site_perl/5.8.9/mach/XML/Parser.pm line 187
Any idea why the error happens? Thanks a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
expat 本身支持 ASCII,因此它不应该为其寻找
.enc
文件。也许指定的 XML 文档
而不是
库不认识到它们应该被同等对待。
ASCII is natively supported by expat, so it shouldn't be looking for a
.enc
file for it.Maybe the XML document specified
instead of
The library doesn't recognise that they should be treated the same.