关于 Linux 上的 Javascript 中的文件处理
我正在为 Firefox 浏览器开发一个插件。我的插件专门用于 Linux 平台。 如何在 Linux 上用 Javascript 处理文件? 我在 Google 上搜索了很多相关信息,得到的只是 Windows 上使用 ActiveX 对象在 Javascript 中进行文件处理。有没有办法在 Linux 上做同样的事情?我想要创建和处理的文件类型只是文本。
I'm developing an addon for Firefox browser. My addon is intended to work on Linux platform specifically. How can I handle a file in Javascript on Linux? I've Googled a lot on this and all I got was file handling in Javascript on Windows using ActiveX objects. Is there any way to do the same on Linux? The type of file I wanted to create and handle is just text.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Mozilla 开发中心有一些非常棒的可重用 XPCOM 组件来管理文件。查看下面的 nsIFile 组件文档:
读取、写入文件:
https://developer.mozilla.org/en/Code_snippets/File_I/ /O#Navigating_with_.0ansIFile
有关 nsIFile 的一般信息:
https://developer.mozilla.org/en/Code_snippets/File_I//O #nsIFile_and_path_strings
简而言之,在开发 Firefox 插件时,您的 JavaScript 在使用“chrome URL”加载到 XUL 标记中时具有特殊权限。该 JavaScript 可以本地读取和写入 Windows、Mac 和 Linux 的文件系统。因此,无需使用Flash或任何第三方插件。
The Mozilla Development Center has some really great reusable XPCOM components for managing files. Check out the nsIFile component documentation below:
Reading, writing files:
https://developer.mozilla.org/en/Code_snippets/File_I//O#Navigating_with_.0ansIFile
General information on nsIFile:
https://developer.mozilla.org/en/Code_snippets/File_I//O#nsIFile_and_path_strings
In short, when developing a Firefox Add-on, your JavaScript has special permissions when loaded in the XUL markup using a "chrome URL". This JavaScript can read and write to the filesystem natively, for Windows, Mac, and Linux. Thus, there is no need to use Flash or any third-party plug-ins.