1


尝试将 XML文件从我的客户端应用程序(在 Android 上)发送到服务器端(IIS 7)之后。我没有得到 XML 文件的文件名,而只是得到了内容。
现在我意识到,简单地传输裸 XML 文件会非常繁重(当我将几乎所有应用程序的数据同步到服务器之后)。

- 现在我正在追求从我的客户端应用程序发送一个压缩文件到服务器端。
- XML 文件被完美地压缩到原来大小的一半以下。文件正在使用HTTP POST直接使用FileEntity不是使用的方法发送MultiPart(这可能是一个问题)。

更新 2:添加了我自己的答案(效果更好:D)。

更新:添加了客户端代码。

问题:
- zip 文件保存在服务器端,但是当我打开它时,winrar/7zip 给了我一个错误提示unexpected end of archive.

我提到了一个几乎类似的问题,但我在.NET开发方面也处于C#劣势:(所以不能真正使用确切的代码(缺少、未初始化的变量等)。此外,线程就像 4 年老了,我真的不希望有人会在那里做出回应。

我现有的服务器端代码:

string fileName = "D:\\newZIPfile.zip";
        Stream myStream = Request.InputStream;
        byte[] message = new byte[myStream.Length];
        myStream.Read(message, 0, (int)myStream.Length);
        string data = System.Text.Encoding.UTF8.GetString(message);

        using (FileStream fs = new FileStream(fileName, FileMode.Create))
        {
            using (StreamWriter writer = new StreamWriter(fs, System.Text.Encoding.UTF8))
            {
                writer.Write(data);
            }
        }

我的客户端代码:

 File file2send = new File(newzipfile);

                String urlString = "http://192.168.1.189/prodataupload/Default.aspx";       // FOR TEST
                HttpParams httpParams = new BasicHttpParams();
                int some_reasonable_timeout = (int) (30 * DateUtils.SECOND_IN_MILLIS);

                HttpConnectionParams.setConnectionTimeout(httpParams, some_reasonable_timeout);

                HttpClient client = new DefaultHttpClient(httpParams);
                HttpPost post = new HttpPost(urlString);

                //System.out.println("SYNC'ing USING METHOD: " + post.getMethod().toString());
             try {
                   //OLD FILE-ENTITY MECHANISM >
                    FileEntity fEntity = new FileEntity(file2send, "application/zip");

                    //NEW (v1.5) INPUTSTREAM-ENTITY MECHANISM >
                    //InputStreamEntity fEntity = new InputStreamEntity(new FileInputStream(newzipfile), -1);
                   // fEntity.setContentType("application/zip");
                    post.setEntity(fEntity);

                    HttpResponse response = client.execute(post);
                    resEntity = response.getEntity();
                    res_code = response.getStatusLine().getStatusCode();            
                    final String response_str = EntityUtils.toString(resEntity);
                    if (resEntity != null) {        
                        Log.i("RESPONSE",response_str);
            //...

我该如何解决这个问题?:(

4

2 回答 2

0

所以这个问题一直困扰着我到目前为止所经历的许多论坛/线程中的很多人。

这是我所做的:
- 将客户端更改为具有binary/octet-stream内容类型。

- 将服务器端代码更改为: 更新:

if(Request.InputStream.Length < 32768) {
        Request.ContentType = "binary/octet-stream";
        Stream myStream = Request.InputStream;
        string fName = Request.Params["CLIENTFILENAME"];
        //string fName = Request.Params.GetValues("zipFileName");

        int iContentLengthCounter = 0;
        int maxlength = (int) myStream.Length;
        byte[] bFileWriteData = new byte[maxlength];
        string fileName = "D:\\"+ fName +".zip";

        //FileStream oFileStream = new FileStream();

        while (iContentLengthCounter < maxlength)
       {
           iContentLengthCounter += Request.InputStream.Read(bFileWriteData, iContentLengthCounter, (maxlength - iContentLengthCounter));
       }
        System.IO.FileStream oFileStream = new System.IO.FileStream(fileName, System.IO.FileMode.Create, System.IO.FileAccess.Write);
       oFileStream.Write(bFileWriteData, 0, bFileWriteData.Length);

        oFileStream.Close();
       Request.InputStream.Close();
    }
    else
    {
    }

基本上..我没有收集数据。到它的长度。(答案需要编辑..稍后完成)

于 2013-02-01T11:14:17.267 回答
0

我会告诉问题是由于将代码中的 ZIP 文件(二进制文件)转换为 UTF-8 流所致。

尝试将服务器端代码替换为以下内容:

string fileName = "D:\\newZIPfile.zip";

using (FileStream fs = new FileStream(fileName, FileMode.Create))
{
    byte[] buffer = new byte[32768];
    int read;
    while ((read = Request.InputStream.Read(buffer, 0, buffer.Length)) > 0)
    {
        fs.Write (buffer, 0, read);
    }
}

这会将接收到的输入流写入 ZIP 文件。

要同时接收客户端 ZIP-Filename,一种可能的方法是更改​​行

String urlString = "http://192.168.1.189/prodataupload/Default.aspx";

类似于:

String urlString = "http://192.168.1.189/prodataupload/Default.aspx?CLIENTFILENAME=" + 
    urlEncodedFilename;

因此,您可以通过使用Request.Params属性来访问参数。

警告:不要相信客户端发送的文件名(有人可以操纵它!)。对参数进行严格的卫生/验证!

于 2013-02-01T11:14:22.433 回答