如何将批处理文件中写入的dos命令写入javascript
我正在使用以下 javascript:
function doPrint(){
netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
var exe = Components.classes['@mozilla.org/file/local;1'].createInstance(Components.interfaces.nsILocalFile);
exe.initWithPath("C:\\temp\\print.bat");
exe.launch();
}
print.bat 有以下命令:
lpr -S 192.168.19.211 -P print -o l C:\\Temp\\temp.txt
代码运行良好,但需要 print.bat 存在。
如何将 print.bat 中编写的命令转移到 doPrint 函数中?
I am using the following javascript:
function doPrint(){
netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
var exe = Components.classes['@mozilla.org/file/local;1'].createInstance(Components.interfaces.nsILocalFile);
exe.initWithPath("C:\\temp\\print.bat");
exe.launch();
}
print.bat has the following command :
lpr -S 192.168.19.211 -P print -o l C:\\Temp\\temp.txt
the code runs fine , but it requires print.bat to be present.
How can I shift the command written in print.bat into my doPrint function?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 https://developer.mozilla.org/en/Code_snippets/Running_applications#Using_nsIProcess
您可以在 initWithPath 调用中使用 lpr 并使用 nsIProcess 使用参数运行它。
Have a look at https://developer.mozilla.org/en/Code_snippets/Running_applications#Using_nsIProcess
You could use lpr in the initWithPath call and use nsIProcess to run it with the parameters.