1

Is there a JAVA library/class which provides parsing capabilities for Flash cookie files (.SOL) by any chance?

The user case scenario is quite simple: Given a *.SOL file I need to read all the text info (programmatically).

PS.: From a similar question someone figured out that SOL files format is based on AMF, however I would like to know whether Adobe has opened the format or not.

Thanks a lot,

--Max

Community
  • 1
  • 1
Max
  • 1,989
  • 4
  • 17
  • 20

2 Answers2

1

Any of the following libraries claim to do the work:

Max
  • 1,989
  • 4
  • 17
  • 20
  • 1
    Here is the technical specification: http://download.macromedia.com/pub/labs/amf/amf3_spec_121207.pdf – Max Mar 23 '12 at 23:11
0

Not that I am aware of.

I'm not sure if it's an open format or not but this software certainly seems to read them from the harddrive http://www.nirsoft.net/utils/flash_cookies_view.html

More info on wikipedia including a list of software reading them http://en.wikipedia.org/wiki/Local_Shared_Object

this claims to translate sol files to xml... you might be able to use this easily in Java http://osflash.org/s2x

keyle
  • 2,762
  • 3
  • 24
  • 27
  • Your approach seems to work, but I was looking for a solution such as the following ones... – Max Mar 23 '12 at 23:07