如何使用 URI 创建 nsIFile 对象
我正在为 Firefox 制作扩展,我希望我的扩展打开一个像“file:///home/blahblah/foo.txt”这样的文件,然后将该文件的内容放入文本区域。使用文件“http://”很容易,但我不能使用“file://”来做到这一点
I'm making extension for firefox, and I want to my extension open a file like "file:///home/blahblah/foo.txt" and then put content of this file in text area. Its easy with files "http://", but i cant do this with "file://"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用本地文件时,您必须真正“加载”它们:
fileContent 包含字符串形式的内容
when working with local files you have to really "load" them:
fileContent contains the content as string
如果您有文件的 URI 字符串(而不是本地路径或 nsIFile 对象),那么您还可以使用 XMLHttpRequest 读取文件的内容。
If you have the URI string for the file (rather than the local path or nsIFile object) then you can also use XMLHttpRequest to read the file's contents.