1

从我的 Android 应用程序中,我尝试使用以下 URL 从 Windows Azure blob 存储下载:http: //iclyps.blob.core.windows.net/broadcasts/23_6.mp4

当我从我的应用程序中下载生成的文件时,它已损坏。当我使用默认浏览器或 Chrome 下载它时,也会出现同样的错误。同样来自 Easy Downloader 应用程序,也会出现同样的错误。仅从我的 PC 下载或使用 Android 设备(或模拟器)的 Firefox Beta 即可正确检索文件。

我使用以下代码(片段):

    try {
        HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();

        //set up some things on the connection
        urlConnection.setRequestMethod("GET");
        urlConnection.setDoOutput(true);

        //and connect!
        urlConnection.connect();

        bis = new BufferedInputStream(urlConnection.getInputStream(), BUFSIZE);
        bos = new BufferedOutputStream(
                context.openFileOutput(TMPFILE, Context.MODE_PRIVATE), BUFSIZE);
        /*
         * Read bytes to the buffer in chunks of BUFSIZE bytes until there is nothing more to read.
         * Each chunk is written to the output file.
         */
        byte[] buf = new byte[BUFSIZE];
        int nBytes = 0;
        int tBytes = 0;
        while ((nBytes = bis.read(buf, 0, BUFSIZE)) > 0) {
            bos.write(buf, 0, nBytes);
            tBytes += nBytes;
        }
        if (tBytes == 0) throw new Exception("no bytes received");
        bos.flush();
        MobyLog.d(TAG, "download succeeded: #bytes = " + Integer.toString(tBytes));
        return true;
    } catch (Exception e) {
        MobyLog.e(TAG, "download failed: " + e);
        context.deleteFile(TMPFILE);    // remove possibly present partial file.
        return false;
    } finally {
        if (bis != null) try { bis.close(); } catch (IOException e) {MobyLog.e(TAG, "bis close exception: " + e); };
        if (bos != null) try { bos.close(); } catch (IOException e) {MobyLog.e(TAG, "bos close exception: " + e); };
    }

分析文件显示原始文件的第一部分(约 700K)在损坏的文件中重复多次,导致 mp4 文件无效。

将文件放在另一个网络服务器 (Apache/IIS) 上,然后从该位置下载文件确实会导致正确下载。

有没有人在从 Azure 下载时遇到过类似的问题?有人可以提供解决方案吗?

干杯,哈拉尔...

4

1 回答 1

0

您是否尝试过在您的 android 应用程序中使用azure-sdk-for-java ?

我们的场景略有不同,因为我们使用 sdk 从 blob 存储中拉取和推送图像到自定义的 android 应用程序。但基本面应该是一样的。

于 2012-09-19T15:22:37.797 回答