4

尝试使用 XUL 代码在 windows 临时目录中写入文件:

function writeFile_launch_application(utility_name,utility_path)
{
var data ='tasklist  /nh /fi "imagename eq '+utility_name+'" | find /i "'+utility_name+'">nul && (echo alerady running) || ("'+utility_path+'")';
//alert(data);
var file = Cc["@mozilla.org/file/directory_service;1"].
       getService(Ci.nsIProperties).
       get("TmpD", Ci.nsIFile);
        file.append("launch_application.bat");
        file.createUnique(Ci.nsIFile.NORMAL_FILE_TYPE, 0666);

        // Then, we need an output stream to our output file.
        var ostream = Cc["@mozilla.org/network/file-output-stream;1"].
                      createInstance(Ci.nsIFileOutputStream);
        ostream.init(file, -1, -1, 0);

        // Finally, we need an input stream to take data from.
        const TEST_DATA = data;
        let istream = Cc["@mozilla.org/io/string-input-stream;1"].
                      createInstance(Ci.nsIStringInputStream);
        istream.setData(TEST_DATA, TEST_DATA.length);

        NetUtil.asyncCopy(istream, ostream, function(aResult) {
          if (!Components.isSuccessCode(aResult)) {
            // an error occurred!
          }
        })
}

但出现错误:

Timestamp: 11/29/2012 11:03:09 PM
Error: ReferenceError: Cc is not defined
Source File: chrome://myaddon/content/overlay.js
Line: 199

我还尝试在代码顶部添加以下行,但没有解决上述错误:

Components.utils.import("resource://gre/modules/NetUtil.jsm");

Components.utils.import("resource://gre/modules/FileUtils.jsm");
4

2 回答 2

1

Cc 和 Ci 分别是 Components.classes 和 Components.interfaces 的别名。

根据上下文,它们可能(或可能没有)已经定义。

任何状况之下

const Cc = Components.classes;
const Ci = Components.interfaces;
const Cu = Components.utils;
const Cr = Components.results;

(您不应该将您的问题标记为firefox-addon-sdk

于 2012-11-30T13:20:06.553 回答
0

当我开发我的插件时,我总是尝试用和替换Components.utils, 。为此,我文件中的第一行是:Components.intefacesCuCi

const { Cc, Ci, Cu } = require('chrome');

CcComponent.classes。比你现在可以使用

Cu.import("resource://gre/modules/FileUtils.jsm");
Cu.import("resource://gre/modules/NetUtil.jsm");
于 2012-11-30T07:33:11.760 回答