Running applications: Difference between revisions

From MozillaZine Knowledge Base
Jump to navigationJump to search
m (typo)
(Oops in code)
Line 27: Line 27:
// to the process.
// to the process.
var args = ["argument1", "argument2"];
var args = ["argument1", "argument2"];
process.run(false, args, args.length());</pre>
process.run(false, args, args.length);</pre>


==References==
==References==
*[http://xulplanet.com/references/xpcomref/ifaces/nsILocalFile.html nsILocalFile interface]
*[http://xulplanet.com/references/xpcomref/ifaces/nsILocalFile.html nsILocalFile interface]
*[http://xulplanet.com/references/xpcomref/ifaces/nsIProcess.html nsIProcess interface]
*[http://xulplanet.com/references/xpcomref/ifaces/nsIProcess.html nsIProcess interface]

Revision as of 16:47, 9 December 2004

Runing programs

This page describes how to run other programs from your JavaScript code, using Mozilla XPCOM interfaces.

There are two ways to run external programs. The first is to use nsILocalFile::launch() method, the second is to use nsIProcess interface.

nsILocalFile::launch()

This method has the same effect as if you double clicked the file, so for executable files, it will just run the file without any parameters. It may not be implemented on some platforms, so make sure your this method is implemented on your target platforms. It seems to be implemented on Windows.

For more information on nsIFile/nsILocalFile, see File IO.

nsIProcess

The recommended way is to use nsIProcess interface. It is as easy as:

// create an nsILocalFile for the executable
var file = Components.classes["@mozilla.org/file/local;1"]
                            .getService(Components.interfaces.nsILocalFile);
file.initWithPath("c:\\myapp.exe");

// create an nsIProcess
var process = Components.classes["@mozilla.org/process/util;1"]
                            .getService(Components.interfaces.nsIProcess);
process.init(file);

// Run the process.
// If first param is true, calling process will be blocked until
// called process terminates. 
// Second and third params are used to pass command-line arguments
// to the process.
var args = ["argument1", "argument2"];
process.run(false, args, args.length);

References