I\'m trying a simple app to read in the HTML of a website, and tranform it to create an easily readable UI in Android (This is an exersize in learning android, not to make a
A good solution for the cookie storage would be to follow the ThreadLocal pattern in order to avoid storing cookies randomly.
This will help keeping a one and only CookieStore. For more explanation of this pattern, you can follow this useful link.
http://veerasundar.com/blog/2010/11/java-thread-local-how-to-use-and-code-sample/
Cheers