簡體   English   中英

Android在線音樂播放器

[英]Android online Music Player

我嘗試構建可同時下載和播放歌曲的Android在線音樂播放器,並且用戶可以在下載時間內聽到音樂(完全下載之前)。 我使用下面的下載類和MediaPlayer來開始音樂,但是該類僅在下載完成后起作用,並且如果用戶在完整下載應用程序之前單擊播放,而NullpointExption崩潰了,有什么解決方法...!

下載類(可恢復):

public class downloader {
private static boolean Stopdownloader = false;//use for stop download


public static void Stop(boolean status) {
    Stopdownloader = status;
}


public static void dl(final String downloadPath, final String filePath, final Ondownloadprogress lisener) {
    Thread thread = new Thread(new Runnable() {

        @Override
        public void run() {
            try {
                int downloadedSize = 0;
                int fileLength = 0;
                URL url = new URL(downloadPath);
                HttpURLConnection connection = (HttpURLConnection) url.openConnection();
                File file = new File(filePath);
                if (file.exists()) {
                    connection.setRequestProperty("Range", "bytes=" + file.length() + "-");
                    downloadedSize = (int) file.length();
                }
                connection.setRequestMethod("GET");
                connection.setDoInput(true);
                final int FILE_SIZE = connection.getContentLength();
                connection.connect();
                fileLength = connection.getContentLength() + downloadedSize;
                BufferedInputStream input = new BufferedInputStream(connection.getInputStream());
                RandomAccessFile output = new RandomAccessFile(file, "rw");
                output.seek(downloadedSize);

                byte data[] = new byte[1024];
                int count = 0;
                int progress = 0;

                while ((count = input.read(data, 0, 1024)) != -1
                        && progress != 100)
                {
                    if (Stopdownloader) {
                        break;
                    }
                    downloadedSize += count;
                    output.write(data, 0, count);
                    progress = (int) ((downloadedSize * 100) / fileLength);
                    final int ss = (int) ((downloadedSize * 100) / fileLength);
                    final float persent = ((float) progress / FILE_SIZE) * 100;
                    if (lisener != null) {
                        final int finalProgres = progress;
                        G.HANDLER.post(new Runnable() {

                            @Override
                            public void run() {
                                lisener.ondownload((int) ss, finalProgres, FILE_SIZE);
                            }
                        });

                    }
                }

                output.close();
                input.close();
            }
            catch (MalformedURLException e) {}
            catch (IOException e) {}
            finally {}
        }
    });

    thread.start();

}}

在MainActivity中:

    play.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View arg0) {
            downloader.dl("http://MUSIC-URL","/temp.mp3", null);
            downloader.Stop(false);
            MediaPlayer Music = MediaPlayer.create(G.context, Uri.parse("/temp.mp3"));
            Music.start();
            Music.prepare();
        }
    });

您需要在start()之前做prepare()

android參考寫得很好: http : //developer.android.com/reference/android/media/MediaPlayer.html

並看一下本教程http://sapandiwakar.in/tutorial-how-to-manually-create-android-media-player-controls/ ,我認為它也應該使您有所了解。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM