java - Android .apk 文件未完全从 .Net 服务器下载。在手机中获取包解析错误

标签 java android .net web

    using System;
using System.Collections.Generic;

using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class HomePanel : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }
    protected void LinkButton1_Click(object sender, EventArgs e)
    {
        DownloadFile();
    }
    protected void ImageButton1_Click(object sender, ImageClickEventArgs e)
    {
        DownloadFile();
    }
    private void DownloadFile()
    {
        string getPath = "E-MobApps/Sab Recharge.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();
        }
    }


}

这是我的服务器端代码,我正在尝试使我的 android .apk 文件可在单击链接时下载。但是下载的文件是 16 kb ie 比实际的 ie 小。 3.5MB 可能是什么问题。连我手机内存都够存app

最佳答案

您正在使用:

  Response.Flush();

在读取您的流的循环内。因此,您正在写入 Response.OutputStream 并在下一行中清理响应。

尝试将整个流读取到 byte[],并且不要在循环中分配任何内容。

当你的 byte[] 完成后,然后将内容分配给响应。

关于java - Android .apk 文件未完全从 .Net 服务器下载。在手机中获取包解析错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17230146/

相关文章:

.net - 扩展 WCF channel 以在失败时自动重新创建(/重新连接)自身

java - 有没有办法在 LARQ 中创建多个索引并对它们执行 SPARQL

java - 具有 DB2 表锁定的事务性 Web 应用程序

java - wicket 应用程序的多用户测试方法

Java 连接 SQL Server

android - 使用 Android ffmpeg 库进行视频旋转

安卓链接器 : undefined reference to bsd_signal

Android AdMob Phonegap 广告未显示

c# - ConfigurationManager.AppSettings 性能问题

.net - 在 C++ 中测试鼠标左键和右键单击