
GET Request: URLConnection socket = new URL( URL ).openConnection( ) URL: private final static String URL = "" I inspected the Cache header using Fiddler2 and saw that its value was Cache-Control: max-age=0, but it didn't seem to change the program's behavior either.

It seems that the most intuitive option, setUseCaches(), had no effect, and setting the header manually as Cache-Control: no-cache does not seem to work either. However, it seems that no matter what I do, the result is still cached. Therefore, I need up-to-date data instead of a cached result.

I'm trying to gather statistical data from Roblox's currency exchange for analysis.
