1
ファイルダウンロードに問題がありますAndroid携帯でファイルをダウンロードできません - Android ..?
エミュレータでファイルをダウンロードできますが、電話機では動作しません。 私はインターネットの許可を定義し、SDカードを書きました。
サーバーに1つのdocファイルがあり、ユーザーがダウンロードをクリックした場合。ファイルをダウンロードします。このは、エミュレータでは正常に動作しますが、電話では機能しません。
Plz解決策を見つける手助けをしてください。
ありがとうございます。
* 編集*
public void downloadFile(String _url, String fileName) {
File PATH = Environment
.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS);
try {
PATH.mkdirs();
URL url = new URL(_url); // you can write here any link
File file = new File(PATH, fileName);
long startTime = System.currentTimeMillis();
Log.d("Manager", "download begining");
Log.d("DownloadManager", "download url:" + url);
Log.d("DownloadManager", "downloaded file name:" + fileName);
/* Open a connection to that URL. */
URLConnection ucon = url.openConnection();
/*
* Define InputStreams to read from the URLConnection.
*/
InputStream is = ucon.getInputStream();
BufferedInputStream bis = new BufferedInputStream(is);
/*
* Read bytes to the Buffer until there is nothing more to read(-1).
*/
ByteArrayBuffer baf = new ByteArrayBuffer(50);
int current = 0;
while ((current = bis.read()) != -1) {
baf.append((byte) current);
}
/* Convert the Bytes read to a String. */
FileOutputStream fos = new FileOutputStream(file);
fos.write(baf.toByteArray());
fos.close();
Log.d("ImageManager",
"download ready in"
+ ((System.currentTimeMillis() - startTime)/1000)
+ " sec");
} catch (IOException e) {
Log.d("ImageManager", "Error: " + e);
}
}
logcatに何らかのエラーがありますか?多分いくつかのコードスニペット? –
いくつかのコードを貼り付けます。この情報はあなたを助けるのが難しいです:) – oriolpons
Nop、logcatはエラーをもたらしません。 –