this bağlantılarını görmektesiniz. Kısacası sunucunuzun indirmeyi desteklemesi gerekiyor. Bunu yaparsa, aşağıdaki kodu deneyebilirsiniz:
private final int TIMEOUT_CONNECTION = 5000; //5sec
private final int TIMEOUT_SOCKET = 30000; //30sec
private final int BUFFER_SIZE = 1024 * 5; // 5MB
private final int TIMEOUT_CONNECTION = 5000; //5sec
private final int TIMEOUT_SOCKET = 30000; //30sec
private final int BUFFER_SIZE = 1024 * 5; // 5MB
try {
URL url = new URL("http://....");
//Open a connection to that URL.
URLConnection ucon = url.openConnection();
ucon.setReadTimeout(TIMEOUT_CONNECTION);
ucon.setConnectTimeout(TIMEOUT_SOCKET);
// Define InputStreams to read from the URLConnection.
// uses 5KB download buffer
InputStream is = ucon.getInputStream();
BufferedInputStream in = new BufferedInputStream(is, BUFFER_SIZE);
FileOutputStream out = new FileOutputStream(file);
byte[] buff = new byte[BUFFER_SIZE];
int len = 0;
while ((len = in.read(buff)) != -1)
{
out.write(buff,0,len);
}
} catch (IOException ioe) {
// Handle the error
} finally {
if(in != null) {
try {
in.close();
} catch (Exception e) {
// Nothing you can do
}
}
if(out != null) {
try {
out.flush();
out.close();
} catch (Exception e) {
// Nothing you can do
}
}
}
Sunucu karşıdan yüklemeyi desteklemiyorsa, yapabileceğiniz bir şey yoktur.
"Video URL’den kısa bir klip kaydet" ne anlama geliyor? – CommonsWare
Üzgünüz, yayınlamak için asıl gönderiyi güncelledim. – codeshark
@ android-user, sorununuzu çözdüyse cevabımı kabul etmenizi isteyebilir miyim? –