2
我目前有一個mediaplayer,並試圖從我的源路徑獲取重定向地址。由於媒體播放器不支持重定向處理,因此我試圖通過創建httpurlconnection等來獲取重定向的url路徑。但是,我不確定我是否正確地進行了操作。任何幫助,將不勝感激。謝謝。Android - 獲取url重定向
代碼:
Log.d(TAG, "create url - test");
URL testUrl = new URL(path);
HttpURLConnection conn = (HttpURLConnection)testUrl.openConnection();
String test = conn.getURL().toString();
String test1 = conn.getHeaderField(2);
String test2 = conn.toString();
Log.d(TAG, "normal stuff test is: " + test);
Log.d(TAG, "header field test is: " + test1);
Log.d(TAG, "url to string is: " + test2);
看看我的答案[這裏](http://stackoverflow.com/questions/10341475/getting-url-after-a-redirect-using-httpclient-executehttpget)有所幫助。 – yorkw