使用Vitamio打造自己的Android萬能播放器(7)——線上播放(下載視頻)

來源:互聯網
上載者:User

前言

  本章將實現非常實用的功能——下載線上視頻。涉及到多線程、線程更新UI等技術,還需思考產品的設計,如何將新加的功能更好的融入到現有的產品中,並不是簡單的加一個介面就行了,歡迎大家交流產品設計和技術細節實現!  聲明  歡迎轉載,但請保留文章原始出處:)     部落格園:http://www.cnblogs.com    農民伯伯: http://over140.cnblogs.com   系列  1、使用Vitamio打造自己的Android萬能播放器(1)——準備  2、使用Vitamio打造自己的Android萬能播放器(2)—— 手勢控制亮度、音量、縮放  3、使用Vitamio打造自己的Android萬能播放器(3)——本地播放(主介面、視頻列表)

  4、使用Vitamio打造自己的Android萬能播放器(4)——本地播放(快捷搜尋、資料存放區)
  5、使用Vitamio打造自己的Android萬能播放器(5)——線上播放(播放優酷視頻)
  6、使用Vitamio打造自己的Android萬能播放器(6)——線上播放(播放清單)

 

本文  一、目標

    本章實現視頻下載的功能

      

    使用說明:進入線上視頻,點擊播放時將彈出選擇框詢問播放還是下載,點擊下載後進度條將在本地視頻頂部顯示。如果想邊看便下載,請直接點擊本地播放清單中正在下載的視頻。

 

  二、實現(部分主要實現代碼)    FileDownloadHelperpublic class FileDownloadHelper {
    private static final String TAG = "FileDownloadHelper";
    /** 線程池 */
    private ThreadPool mPool = new ThreadPool();
    /** 開始下載 */
    public static final int MESSAGE_START = 0;
    /** 更新進度 */
    public static final int MESSAGE_PROGRESS = 1;
    /** 下載結束 */
    public static final int MESSAGE_STOP = 2;
    /** 下載出錯 */
    public static final int MESSAGE_ERROR = 3;
    /** 中途終止 */
    private volatile boolean mIsStop = false;
    private Handler mHandler;
    public volatile HashMap<String, String> mDownloadUrls = new HashMap<String, String>();

    public FileDownloadHelper(Handler handler) {
        if (handler == null)
            throw new IllegalArgumentException("handler不可為空!");

        this.mHandler = handler;
    }

    public void stopALl() {
        mIsStop = true;
        mPool.stop();
    }

    public void newDownloadFile(final String url) {
        newDownloadFile(url, Environment.getExternalStorageDirectory() + "/" + FileUtils.getUrlFileName(url));
    }

    /**
     * 下載一個新的檔案
     * 
     * @param url
     * @param savePath
     */
    public void newDownloadFile(final String url, final String savePath) {
        if (mDownloadUrls.containsKey(url))
            return;
        else
            mDownloadUrls.put(url, savePath);
        mPool.start(new Runnable() {

            @Override
            public void run() {
                mHandler.sendMessage(mHandler.obtainMessage(MESSAGE_START, url));
                HttpClient client = new DefaultHttpClient();
                HttpGet get = new HttpGet(url);
                InputStream inputStream = null;
                FileOutputStream outputStream = null;
                try {
                    HttpResponse response = client.execute(get);
                    HttpEntity entity = response.getEntity();
                    final int size = (int) entity.getContentLength();
                    inputStream = entity.getContent();
                    if (size > 0 && inputStream != null) {
                        outputStream = new FileOutputStream(savePath);
                        int ch = -1;
                        byte[] buf = new byte[1024];
                        //每秒更新一次進度
                        new Timer().schedule(new TimerTask() {

                            @Override
                            public void run() {
                                try {
                                    FileInputStream fis = new FileInputStream(new File(savePath));
                                    int downloadedSize = fis.available();
                                    if (downloadedSize >= size)
                                        cancel();
                                    mHandler.sendMessage(mHandler.obtainMessage(MESSAGE_PROGRESS, downloadedSize, size, url));
                                } catch (Exception e) {

                                }
                            }
                        }, 50, 1000);

                        while ((ch = inputStream.read(buf)) != -1 && !mIsStop) {
                            outputStream.write(buf, 0, ch);
                        }
                        outputStream.flush();
                    }
                } catch (Exception e) {
                    Log.e(TAG, e.getMessage(), e);
                    mHandler.sendMessage(mHandler.obtainMessage(MESSAGE_ERROR, url + ":" + e.getMessage()));
                } finally {
                    try {
                        if (outputStream != null)
                            outputStream.close();
                    } catch (IOException ex) {
                    }
                    try {
                        if (inputStream != null)
                            inputStream.close();
                    } catch (IOException ex) {
                    }
                }
                mDownloadUrls.remove(url);
                mHandler.sendMessage(mHandler.obtainMessage(MESSAGE_STOP, url));
            }
        });
    }

    代碼說明:      a. ThreadPool是線程池,請參照項目代碼。

      b. 這裡使用了Time定時來刷進度,而沒有直接在write資料時更新進度,這樣的原因時每秒write較高,更新UI過於頻繁,可能導致逾時等問題。

    Handle

    public Handler mDownloadHandler = new Handler() {
        @Override
        public void handleMessage(Message msg) {
            PFile p;
            String url = msg.obj.toString();
            switch (msg.what) {
            case FileDownloadHelper.MESSAGE_START://開始下載
                p = new PFile();
                p.path = mParent.mFileDownload.mDownloadUrls.get(url);
                p.title = new File(p.path).getName();
                p.status = 0;
                p.file_size = 0;
                if (mDownloadAdapter == null) {
                    mDownloadAdapter = new FileAdapter(getActivity(), new ArrayList<PFile>());
                    mDownloadAdapter.add(p, url);
                    mTempListView.setAdapter(mDownloadAdapter);
                    mTempListView.setVisibility(View.VISIBLE);
                } else {
                    mDownloadAdapter.add(p, url);
                    mDownloadAdapter.notifyDataSetChanged();
                }
                break;
            case FileDownloadHelper.MESSAGE_PROGRESS://正在下載
                p = mDownloadAdapter.getItem(url);
                p.temp_file_size = msg.arg1;
                p.file_size = msg.arg2;
                int status = (int) ((msg.arg1 * 1.0 / msg.arg2) * 10);
                if (status > 10)
                    status = 10;
                p.status = status;
                mDownloadAdapter.notifyDataSetChanged();
                break;
            case FileDownloadHelper.MESSAGE_STOP://下載結束
                p = mDownloadAdapter.getItem(url);
                FileBusiness.insertFile(getActivity(), p);
                break;
            case FileDownloadHelper.MESSAGE_ERROR:
                Toast.makeText(getActivity(), url, Toast.LENGTH_LONG).show();
                break;
            }
            super.handleMessage(msg);
        }

    }; 

    代碼說明:      a. mTempListView是新增的,預設是隱藏,請參見項目代碼layout部分。

      b. 下載流程:開始(顯示mTempListView) -> 正在下載(更新進度圖片和大小)  -> 完成(入褲)

    Dialog

                if (FileUtils.isVideoOrAudio(url)) {
                    Dialog dialog = new AlertDialog.Builder(getActivity()).setIcon(android.R.drawable.btn_star).setTitle("播放/下載").setMessage(url).setPositiveButton("播放", new OnClickListener() {
                        @Override
                        public void onClick(DialogInterface dialog, int which) {
                            Intent intent = new Intent(getActivity(), VideoPlayerActivity.class);
                            intent.putExtra("path", url);
                            startActivity(intent);
                        }
                    }).setNeutralButton("下載", new OnClickListener() {
                        @Override
                        public void onClick(DialogInterface dialog, int which) {
                            MainFragmentActivity activity = (MainFragmentActivity) getActivity();
                            activity.mFileDownload.newDownloadFile(url);
                            Toast.makeText(getActivity(), "正在下載 .." + FileUtils.getUrlFileName(url) + " ,可從本地視頻查看進度!", Toast.LENGTH_LONG).show();
                        }
                    }).setNegativeButton("取消", null).create();
                    dialog.show();
                    return true;

                } 

 

  三、下載

    至本章節往後,代碼均不再提供下載,請移步Google Code:
    http://code.google.com/p/android-oplayer

 

  四、Vitamio公告

      正式建立Vitamio開發人員聯盟QQ群!群號為:246969281

      注意:目前僅接受已經開發基於Vitamio產品的開發人員申請加入,申請理由請填寫產品的名詞和連結,擷取最新進展以及與Vitamio作者直接交流機會!

 

結束  有BUG不可怕,改了就行,大膽設計、放手寫代碼,謹慎處理已知細節,這樣的軟體才會越來越好。寫了一上午代碼,難免有出錯的地方,歡迎反饋~

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.