does any knows how to access .jar file in JS. I have created class in Java and imported as a jar file and I want to access that class from JS file.
"Hi Guys, i thankful to all of you. I tried to list files from a folder using JS in Firefox XUL but I couldn't then i decided to do it with JAVA in JS. I would be happy if i find one example either with JS or Java in JS to list folder files."
Thanking u guys.
karthik
One of my tutor had done it and here is the code but i couldn't understand! I'm sure he called the jar files from the same project folder where exactly all the JS and XUL files are located.
// This function will be called to give the necessary privileges to your JAR files
function policyAdd (loader, urls) {
//alert("debut charge java");
try {
//If have trouble with the policy try changing it to
//edu.mit.simile.javaFirefoxExtensionUtils.URLSetPolicy
var str = 'edu.mit.simile.javaFirefoxExtensionUtils.URLSetPolicy';
var policyClass = java.lang.Class.forName(
str,
true,
loader
);
var policy = policyClass.newInstance();
policy.setOuterPolicy(java.security.Policy.getPolicy());
java.security.Policy.setPolicy(policy);
policy.addPermission(new java.security.AllPermission());
for (var j=0; j < urls.length; j++) {
policy.addURL(urls[j]);
}
}catch(e) {
alert(e+'::'+e.lineNumber);
}
}
//Get extension folder installation path...
var extensionPath = Components.classes["@mozilla.org/extensions/manager;1"].
getService(Components.interfaces.nsIExtensionManager).
getInstallLocation("pde@ghorbel.com"). // guid of extension
getItemLocation("pde@ghorbel.com");
// Get path to the JAR files (the following assumes your JARs are within a
// directory called "java" at the root of your extension's folder hierarchy)
// You must add this utilities (classloader) JAR to give your extension full privileges
var classLoaderJarpath = "file:///" + extensionPath.path.replace(/\\/g,"/") + "/java/javaFirefoxExtensionUtils.jar";
// Add the paths for all the other JAR files that you will be using
var myJarpath = "file:///" + extensionPath.path.replace(/\\/g,"/") +
"/java/encryption.jar"; // seems you don't actually have to replace the backslashes as they work as well
var urlArray = []; // Build a regular JavaScript array (LiveConnect will auto-convert to a Java array)
urlArray[0] = new java.net.URL(myJarpath);
urlArray[1] = new java.net.URL(classLoaderJarpath);
var cl = java.net.URLClassLoader.newInstance(urlArray);
//Set security policies using the above policyAdd() function
policyAdd(cl, urlArray);
/*
//loading Encryption Class
var myClass = cl.loadClass('Encryption'); // use the same loader from above
var encryptionObj = myClass.newInstance();
//var res = encryptionObj.encrypt("test message to crypt"); // Pass whatever arguments you need (they'll be auto-converted to Java form, taking into account the LiveConnect conversion rules)
*/
