0

このコードを使用すると、Android の URL からファイルをダウンロードして SDCard に保存できます。このファイルをプログラムで開く方法はありますか?

インテントはこれに役立ちますか?

private static class Task extends AsyncTask<Void, Void, Void> {

    static String DownloadUrl = "http://00.00.00.00/abc.crt";
    static String fileName = "def.crt";

ダウンロードする非同期タスク

@Override
protected Void doInBackground(Void... arg0) {
    DownloadFromUrl();
    return null;
}


public static void DownloadFromUrl() {

   try {
           File root = android.os.Environment.getExternalStorageDirectory();               

           File dir = new File (root.getAbsolutePath() + "/SDCard");
           if(dir.exists()==false) {
                dir.mkdirs();
           }

           URL url = new URL(DownloadUrl); //you can write here any link
           File file = new File(dir, fileName);

           long startTime = System.currentTimeMillis();
           Log.d("DownloadManager", "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(5000);
           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.flush();
           fos.close();
           Log.d("DownloadManager", "download ready in" + ((System.currentTimeMillis() - startTime) / 1000) + " sec");




   } catch (IOException e) {
       Log.d("DownloadManager", "Error: " + e);
   }

}


}
4

1 に答える 1

0

FileInputStream を使用して、ダウンロードしたファイルをメモリにロードします http://developer.android.com/reference/java/io/FileInputStream.html

ファイルが特定の拡張子の場合、バイト配列への解決を伴わない他の方法でファイルをロードできる可能性があります。

于 2013-02-21T09:05:57.910 に答える