c# - 使用 Android 手机浏览器从 Asp.net 网站下载 .apk 时出错

标签 c# android asp.net .net apk

在我的 .aspx 页面中,我有下载按钮,onclick 下载 .apk 文件。

当我在我的电脑上运行时,它运行良好 .apk 文件被下载到我的电脑上
但是,当我使用我的 Android 手机转到该站点并单击下载按钮时,它会开始下载,但文件单击会出现错误解析包时出现问题。

另外,实际文件大小为 604kb(从 andorid 手机下载时为 22kb)

下载的文件(22kb)包含html内容。

 private void DownloadFile()
    {
        string getPath = "demo_Android/demoAndroid.apk";
        System.IO.Stream iStream = null;

        // Buffer to read 10K bytes in chunk:
        byte[] buffer = new Byte[1024];

        // Length of the file:
        int length;

        // Total bytes to read:
        long dataToRead;

        // Identify the file to download including its path.
        string filepath = Server.MapPath(getPath);

        // Identify the file name.
        string filename = System.IO.Path.GetFileName(filepath);
        try
        {
            // Open the file.
            iStream = new System.IO.FileStream(filepath, System.IO.FileMode.Open,
                        System.IO.FileAccess.Read, System.IO.FileShare.Read);


            // Total bytes to read:
            dataToRead = iStream.Length;
            Response.ContentType = "application/vnd.android.package-archive";
            Response.AddHeader("Content-Disposition", "attachment; filename=" + filename);

            // Read the bytes.
            while (dataToRead > 0)
            {
                // Verify that the client is connected.
                if (Response.IsClientConnected)
                {
                    // Read the data in buffer.
                    length = iStream.Read(buffer, 0, 1024);

                    // Write the data to the current output stream.
                    Response.OutputStream.Write(buffer, 0, length);

                    // Flush the data to the HTML output.
                    Response.Flush();

                    buffer = new Byte[1024];
                    dataToRead = dataToRead - length;
                }
                else
                {
                    //prevent infinite loop if user disconnects
                    dataToRead = -1;
                }
            }
        }
        catch (Exception ex)
        {
            // Trap the error, if any.
            Response.Write("Error : " + ex.Message);
        }
        finally
        {
            if (iStream != null)
            {
                //Close the file.
                iStream.Close();
            }
            Response.Close();
        }
    }

最佳答案

这是我解决问题的方法

我的应用程序托管在具有 IIS 7 的 Window server 2008r2 下

第一步:在.aspx页面添加超链接,设置navigateurl为文件路径

<asp:HyperLink ID="lnkdwnload" runat="server" NavigateUrl="~/Application_Android/MyAndroidAppAame.apk">Download MyApp</asp:HyperLink>

第二步:web.config在staticContent下添加mimeMap元素

<system.webServer>
    <staticContent>
      <mimeMap fileExtension=".apk" mimeType="application/vnd.android.package-archive"/>
    </staticContent>
</system.webServer>

关于c# - 使用 Android 手机浏览器从 Asp.net 网站下载 .apk 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11079015/

相关文章:

c# - 如何在 HtmlAgilityPack 中按类获取元素

c# - 模拟 ISession.Query<T>() 以测试消费者

安卓: Activity 列表

javascript - 自动完成文本框出错

c# - 在 VS2015 中运行第一个单元测试的启动时间

c# - 线程和任务调度

android - 为 Froyo 2.2 Droid 添加启动声音

android - "Failed to load ad: 3"使用 DoubleClick

asp.net - 每个线程使用一个 Entity Framework 上下文是否安全? ... 是的?如何?

mysql - ASP.NET 忽略潜在危险请求的异常