0

これを読んだ後:Java、Android上のYoutubeからビデオをダウンロードするためのコード

次のようなYouTubeダウンロードリンクを取得する方法を見つけました: http: // oo --- preferred --- lax02s10 --- v9 --- lscache4.c.youtube.com/videoplayback?upn = 7XKwMrZklvQ&sparams = cp%2Cid%2Cip%2Cipbits%2Citag%2Cratebypass%2Csource%2Cupn%2Cexpire&fexp = 903903%

を使って動画をダウンロードしてみました

    public void DownloadFromUrl(String DownloadUrl, String fileName) {
    Log.i("DownloadFromUrl","DownloadFromUrl"+DownloadUrl);

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

               File dir = new File (root.getAbsolutePath() + "/youlike");
               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();
               Log.i("URLConnection","URLConnection Succeed");

               /*
                * Define InputStreams to read from the URLConnection.
                */ 
               InputStream is = ucon.getInputStream();
               BufferedInputStream bis = new BufferedInputStream(is);
               Log.i("BufferedInputStream","BufferedInputStream Succeed");

               /*
                * 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);
                  Log.i("ByteArrayBuffer","ByteArrayBuffer Succeed");

               }


               /* Convert the Bytes read to a String. */
               FileOutputStream fos = new FileOutputStream(file);
               Log.i("FileOutputStream","FileOutputStream initialized");
               fos.write(baf.toByteArray());
               Log.i("fos.write(baf.toByteArray());","fos.write(baf.toByteArray()); initialized");
               fos.flush();
               fos.close();
               Log.d("DownloadManager", "download ready in" + ((System.currentTimeMillis() - startTime) / 1000) + " sec");

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

    }

しかし、それは私にエラーメッセージを返します:java.io.FileNotFoundException私はURLをテストし、それが機能することを確信しています。誰かが問題が何であるか教えてもらえますか?

4

2 に答える 2

2

http接続を開く前に、YouTubeのダウンロードリンクをエンコードする必要がありますか?

于 2012-09-10T02:13:01.703 に答える
0

外部ストーガに書き込み許可を設定しなかったのでしょうか?ファイルmkdirs()メソッドがandroid/javaで機能しない

于 2012-09-09T14:22:35.437 に答える