|
|
|
|
208
|
String baseUrl = urlObj.getProtocol() + "://" + urlObj.getHost();
|
208
|
String baseUrl = urlObj.getProtocol() + "://" + urlObj.getHost();
|
209
|
String cookie = CookieManager.getInstance().getCookie(baseUrl);
|
209
|
String cookie = CookieManager.getInstance().getCookie(baseUrl);
|
210
|
request.addRequestHeader("Cookie", cookie);
|
210
|
request.addRequestHeader("Cookie", cookie);
|
211
|
- System.out.println("Got cookie for DownloadManager: " + cookie);
|
|
|
212
|
} catch (MalformedURLException e) {
|
211
|
} catch (MalformedURLException e) {
|
213
|
System.out.println("Error getting cookie for DownloadManager: " + e.toString());
|
212
|
System.out.println("Error getting cookie for DownloadManager: " + e.toString());
|
214
|
e.printStackTrace();
|
213
|
e.printStackTrace();
|