I am using Java in my FireFox extensions and I am unable since Mozilla stopped supporting Java in FireFox 16,17,18 . So I found that using LiveConnect it was possible before but now it's not.
Is there a way around that? I want to use Java in my FF extensions in versions 16 and above since people don't want to downgrade to version 15 that easily.
So far I had used java like this.
function createFile(folder,file)
{
destinationDir = new java.io.File(folder).mkdirs();
file = new java.io.File(folder,file);
file.createNewFile();
}
And it worked great. But this no longer works in FF I mentioned.
I found this question here.
Unable to load Java into Firefox 16 extension using Liveconnect
But no one replied.
Please don't lower my reputation because of this I work hard for it. If question is not properly asked then just close it. Thanks.