Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Caută ajutor

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Acest fir de discuție a fost arhivat. Adresează o întrebare nouă dacă ai nevoie de ajutor.

how to open cookies file in java

  • 4 răspunsuri
  • 4 au această problemă
  • 3 vizualizări
  • Ultimul răspuns de CodeGust

more options

I am writing a java application that shows FireFox cookies. Is it possible to open the cookies.sqlite file and read that database in Java? I tried with org.sqlite.JDBC driver but without success. And got exception: file is encrypted or is not a database

I am writing a java application that shows FireFox cookies. Is it possible to open the cookies.sqlite file and read that database in Java? I tried with org.sqlite.JDBC driver but without success. And got exception: file is encrypted or is not a database

Toate răspunsurile (4)

more options

Will your application install as an extension? In that case, you can use XPCOM: https://developer.mozilla.org/en/XPCOM_Interface_Reference/nsICookieManager

If your application is meant to run as an applet in a web page, your application probably does not have permission to access cookies, other than the ones set by the same host.

more options

Thank you. My application is meant to run as an applet in a web page. Still I hope it's possible to access firefox cookies from an applet somehow.

more options

For help on this, you could try the Extension Development forum at MozillaZine: http://forums.mozillazine.org/viewforum.php?f=19

more options

Thank you very much! I'll try it.