2
    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 文件在链接点击时可下载。但是下载的文件比实际的ie小16 kb。3.5 MB 这可能是什么问题。就连我的手机内存也足够保存应用了

4

3 回答 3

0

您正在使用:

  Response.Flush();

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

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

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

于 2013-06-21T08:37:35.613 回答
0

您确定您的客户端 (Android) 代码运行良好吗?

这是我在客户端测试的解决方案:

private void downloadFile(String url, File outputFile) {
    try {

        URL u = new URL(url);
        URLConnection conn = u.openConnection();
        conn.connect();

        int contentLength = conn.getContentLength();

        // input stream to read file with 8k buffer
        InputStream input = new BufferedInputStream(u.openStream(), 8192);

        // output stream to write file
        OutputStream output = new  FileOutputStream(outputFile);

        publishDownloadProgress(0);
        toggleDownloadProgressbar(true);

        byte[] buffer = new byte[1024];
        long total= 0;
        int count;
        while((count = input.read(buffer)) != -1) {
            total += count;

            publishDownloadProgress((int) ((total*100) / contentLength));
            output.write(buffer, 0, count);
        }
        output.flush();
        output.close();
        input.close();

    } catch (FileNotFoundException e) {
        if(IsDebugging)
            Log.e("FileNotFoundException", e + "");
        return;
    } catch (IOException e) {
        if(IsDebugging)
            Log.e("IOException", e + "");
        return;
    }
}
于 2013-06-21T09:19:32.447 回答
0

在 IIS 中,我为 .apk 定义了 MIME 类型“application/vnd.android.package-archive”,在 aspx 页面中,我放置了超链接。

于 2013-06-21T09:08:31.387 回答