私は現在、メディア プレーヤーを持っており、ソース パスからリダイレクト アドレスを取得しようとしています。メディア プレーヤーはリダイレクト処理をサポートしていないため、httpurlconnection などを作成して、リダイレクトされた 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);