Ce site disposera de fonctionnalités limitées pendant que nous effectuons des opérations de maintenance en vue de vous proposer un meilleur service. Si un article ne règle pas votre problème et que vous souhaitez poser une question, notre communauté d’assistance est prête à vous répondre via @FirefoxSupport sur Twitter, et /r/firefox sur Reddit.

Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

En savoir plus

Error when using Components.utils.import

  • 1 réponse
  • 1 a ce problème
  • 1 vue
  • Dernière réponse par cor-el

more options

Hi ,

I have a web application(CRM) and my clients use it also for the cash register.What I need to do is to create a local file as the cash register's software need's to read from that file in order to print.

Until now i was using this code:

netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
    var file = Components.classes["@mozilla.org/file/local;1"].createInstance(Components.interfaces.nsILocalFile);
file.initWithPath(filePath);

Unfortunately with the latest version of firefox this isn't working anymore. What I'm trying now starts like this :

try{
    Components.utils.import("resource://gre/modules/FileUtils.jsm");
}catch(e){
 alert(e);
}

Anyhow, from the beginning I get this error "Component.utils is undefined" .Any suggestions please?

Thank you.

Hi , I have a web application(CRM) and my clients use it also for the cash register.What I need to do is to create a local file as the cash register's software need's to read from that file in order to print. Until now i was using this code: <br /> <pre><nowiki>netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect"); var file = Components.classes["@mozilla.org/file/local;1"].createInstance(Components.interfaces.nsILocalFile); file.initWithPath(filePath); </nowiki></pre> Unfortunately with the latest version of firefox this isn't working anymore. What I'm trying now starts like this : <br /> <pre><nowiki>try{ Components.utils.import("resource://gre/modules/FileUtils.jsm"); }catch(e){ alert(e); }</nowiki></pre> Anyhow, from the beginning I get this error "Component.utils is undefined" .Any suggestions please? Thank you.

Modifié le par cor-el

Toutes les réponses (1)

more options

This was also posted on the MozillaZine forum site.