You can use java.net.URLConnection for this. It offers a getHeaderFields() method to get the response headers. The cookies are set by Set-Cookie
header.
URLConnection connection = new URL("http://google.com").openConnection();
List cookies = connection.getHeaderFields().get("Set-Cookie");
// ...