Dropboxのショート リンクを除いて、通常の状況では問題なくクラウド ストレージから音楽を読み込んで再生するアプリがあります。これらのリンクは、302 ヘッダーを使用して https リンクにリダイレクトします。
302 Found リソースは https://www.dropbox.com/s/jhzh3woy3qxblck/05%20-%20Cinema.oggで見つかりました。自動的にリダイレクトされるはずです。
このコードの構造は二重の静的メソッドであり、最初は [時間順に] リダイレクトを検索し、次にデータをファイルに取得します。
現在、2 番目のリンクを使用すると、必要なファイル自体ではなく、Dropbox から無関係な HTML が大量にダウンロードされるため、機能させようとしています。
/**
* Return an Audio File from a URL String
* throws IOException
*
* @param url the URL which provides the target
* @return File - audio file
*/
public static File getAudioFile(String urlString, File f) {
String newUrl = null;
try {
newUrl = getRedirect(urlString);
} catch (ClientProtocolException e) {
Log.e(TAG, "ClientProtocolException Error getting Redirect ", e);
} catch (IOException e) {
Log.e(TAG, "IOException Error getting Redirect", e);
}
if (newUrl != null) {
urlString = newUrl;
}
else {
Log.i(TAG, "IOException Error getting Redirect because its null");
}
try {
URL url = new URL(urlString);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setInstanceFollowRedirects(true);
conn.setReadTimeout(40 * 1000);
conn.setConnectTimeout(45 * 1000);
conn.setRequestMethod("GET");
conn.setRequestProperty("Connection", "close");
conn.setDoInput(true);
conn.setDefaultUseCaches(true);
// Starts the input from the URL
conn.connect();
InputStream is = conn.getInputStream();
BufferedInputStream bis = new BufferedInputStream(is);
BufferedOutputStream bof = new BufferedOutputStream(new FileOutputStream(f));
// write the inputStream to the FileOutputStream
byte [] bytes = new byte [409600];
int block;
while((block = bis.read(bytes, 0, bytes.length)) > 0) {
bof.write(bytes, 0, block);
Log.d(TAG, "Write a block of " + block);
}
bof.flush();
bof.close();
bis.close();
is.close();
conn.disconnect();
} catch (Exception e) {
Log.e(TAG, "Error getting Audio File", e);
}
return f;
}
/**
* Get the new url from a http redirect
* throws IOException
*
* @param url the URL which provides the target
* @return url - the single url redirect
*/
public static String getRedirect(String urlString) throws ClientProtocolException, IOException {
HttpParams httpParameters = new BasicHttpParams();
HttpClientParams.setRedirecting(httpParameters, false);
HttpClient httpClient = new DefaultHttpClient(httpParameters);
HttpGet httpget = new HttpGet(urlString);
HttpContext context = new BasicHttpContext();
HttpResponse response = httpClient.execute(httpget, context);
// If we didn't get a '302 Found' we aren't being redirected.
if (response.getStatusLine().getStatusCode() != HttpStatus.SC_MOVED_TEMPORARILY)
throw new IOException(response.getStatusLine().toString());
Header loc[] = response.getHeaders("Location");
return loc.length > 0 ? loc[loc.length -1].getValue() : null;
}