Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/186.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android 上传和下载字节值不相同_Android_Upload_Download - Fatal编程技术网

Android 上传和下载字节值不相同

Android 上传和下载字节值不相同,android,upload,download,Android,Upload,Download,我使用下面的代码上传sql文件,然后下载它。虽然所有数据都从数据文件中恢复,但写入和读取的字节值不同。我希望它们与我稍后加密/取消数据类型相同,并且不能在不同的数据上正常工作 上载详细信息: public int uploadFile(String sourceFileUri) { String fileName = sourceFileUri; HttpURLConnection conn = null; DataOutputStream dos = null;

我使用下面的代码上传sql文件,然后下载它。虽然所有数据都从数据文件中恢复,但写入和读取的字节值不同。我希望它们与我稍后加密/取消数据类型相同,并且不能在不同的数据上正常工作

上载详细信息:

public int uploadFile(String sourceFileUri) {


    String fileName = sourceFileUri;

    HttpURLConnection conn = null;
    DataOutputStream dos = null;  
    String lineEnd = "\r\n";
    String twoHyphens = "--";
    String boundary = "*****";
    int bytesRead, bytesAvailable, bufferSize;
    byte[] buffer;
    int maxBufferSize = 1 * 1024 * 1024; 
    File sourceFile = new File(sourceFileUri); 

    if (!sourceFile.isFile()) {

         dialog.dismiss(); 

         Log.e("uploadFile", "Source File not exist :"
                             +uploadFilePath + "" + uploadFileName);

         return 0;

    }
    else
    {
         try { 

               // open a URL connection to the Servlet
             FileInputStream fileInputStream = new FileInputStream(sourceFile);
             URL url = new URL(upLoadServerUri);

             // Open a HTTP  connection to  the URL
             conn = (HttpURLConnection) url.openConnection(); 
             conn.setDoInput(true); // Allow Inputs
             conn.setDoOutput(true); // Allow Outputs
             conn.setUseCaches(false); // Don't use a Cached Copy
             conn.setRequestMethod("POST");
             conn.setRequestProperty("Connection", "Keep-Alive");
             conn.setRequestProperty("ENCTYPE", "multipart/form-data");
             conn.setRequestProperty("Content-Type", "multipart/form-data;boundary=" + boundary);
             conn.setRequestProperty("uploaded_file", fileName); 

             dos = new DataOutputStream(conn.getOutputStream());

             dos.writeBytes(twoHyphens + boundary + lineEnd); 
             dos.writeBytes("Content-Disposition: form-data; name=\"uploaded_file\";filename=\""
                                       + fileName + "\"" + lineEnd);

             dos.writeBytes(lineEnd);

             // create a buffer of  maximum size
             bytesAvailable = fileInputStream.available(); 

             bufferSize = Math.min(bytesAvailable, maxBufferSize);
             buffer = new byte[bufferSize];

             // read file and write it into form...
             bytesRead = fileInputStream.read(buffer, 0, bufferSize);  

             while (bytesRead > 0) {

               //POINT A    
               dos.write(buffer, 0, bufferSize);
               bytesAvailable = fileInputStream.available();
               bufferSize = Math.min(bytesAvailable, maxBufferSize);
               bytesRead = fileInputStream.read(buffer, 0, bufferSize);   

              }

             // send multipart form data necesssary after file data...
             dos.writeBytes(lineEnd);
             dos.writeBytes(twoHyphens + boundary + twoHyphens + lineEnd);

             // Responses from the server (code and message)
             serverResponseCode = conn.getResponseCode();
             String serverResponseMessage = conn.getResponseMessage();

             Log.i("uploadFile", "HTTP Response is : "
                     + serverResponseMessage + ": " + serverResponseCode);

             if(serverResponseCode == 200){

                 runOnUiThread(new Runnable() {
                      public void run() {

                           Toast.makeText(BackupTest.this, "File Upload Complete.", 
                                       Toast.LENGTH_SHORT).show();
                      }
                  });                
             }    

             //close the streams //
             fileInputStream.close();
             dos.flush();
             dos.close();

        } catch (MalformedURLException ex) {

            dialog.dismiss();  
            ex.printStackTrace();

            runOnUiThread(new Runnable() {
                public void run() {
                    Toast.makeText(BackupTest.this, "MalformedURLException", 
                                                        Toast.LENGTH_SHORT).show();
                }
            });

            Log.e("Upload file to server", "error: " + ex.getMessage(), ex);  
        } catch (Exception e) {

            dialog.dismiss();  
            e.printStackTrace();

            runOnUiThread(new Runnable() {
                public void run() {

                    Toast.makeText(BackupTest.this, "Got Exception : see logcat ", 
                            Toast.LENGTH_SHORT).show();
                }
            });
            Log.e("Upload file to server Exception", "Exception : "
                                             + e.getMessage(), e);  
        }
        dialog.dismiss();       
        return serverResponseCode; 

     } // End else block 
   } 
public void downloadFileFromServer(String filename, String urlString) throws MalformedURLException, IOException
{
    BufferedInputStream in = null;
    FileOutputStream fout = null;
    int bytesRead, bytesAvailable, bufferSize;

    int maxBufferSize = 1 * 1024 * 1024; 
    try
    {
        URL url = new URL(urlString);

        in = new BufferedInputStream(url.openStream());
        fout = new FileOutputStream(filename);

        bytesAvailable = in.available(); 

        bufferSize = Math.min(bytesAvailable, maxBufferSize);

        byte data[] = new byte[bufferSize];
        int count;
        while ((count = in.read(data, 0, bufferSize)) != -1)
        {


            //POINT B
            fout.write(data, 0, count);

        }
    }
    finally
    {
        if (in != null)
                in.close();
        if (fout != null)
                fout.close();
    }

} 
下载详情:

public int uploadFile(String sourceFileUri) {


    String fileName = sourceFileUri;

    HttpURLConnection conn = null;
    DataOutputStream dos = null;  
    String lineEnd = "\r\n";
    String twoHyphens = "--";
    String boundary = "*****";
    int bytesRead, bytesAvailable, bufferSize;
    byte[] buffer;
    int maxBufferSize = 1 * 1024 * 1024; 
    File sourceFile = new File(sourceFileUri); 

    if (!sourceFile.isFile()) {

         dialog.dismiss(); 

         Log.e("uploadFile", "Source File not exist :"
                             +uploadFilePath + "" + uploadFileName);

         return 0;

    }
    else
    {
         try { 

               // open a URL connection to the Servlet
             FileInputStream fileInputStream = new FileInputStream(sourceFile);
             URL url = new URL(upLoadServerUri);

             // Open a HTTP  connection to  the URL
             conn = (HttpURLConnection) url.openConnection(); 
             conn.setDoInput(true); // Allow Inputs
             conn.setDoOutput(true); // Allow Outputs
             conn.setUseCaches(false); // Don't use a Cached Copy
             conn.setRequestMethod("POST");
             conn.setRequestProperty("Connection", "Keep-Alive");
             conn.setRequestProperty("ENCTYPE", "multipart/form-data");
             conn.setRequestProperty("Content-Type", "multipart/form-data;boundary=" + boundary);
             conn.setRequestProperty("uploaded_file", fileName); 

             dos = new DataOutputStream(conn.getOutputStream());

             dos.writeBytes(twoHyphens + boundary + lineEnd); 
             dos.writeBytes("Content-Disposition: form-data; name=\"uploaded_file\";filename=\""
                                       + fileName + "\"" + lineEnd);

             dos.writeBytes(lineEnd);

             // create a buffer of  maximum size
             bytesAvailable = fileInputStream.available(); 

             bufferSize = Math.min(bytesAvailable, maxBufferSize);
             buffer = new byte[bufferSize];

             // read file and write it into form...
             bytesRead = fileInputStream.read(buffer, 0, bufferSize);  

             while (bytesRead > 0) {

               //POINT A    
               dos.write(buffer, 0, bufferSize);
               bytesAvailable = fileInputStream.available();
               bufferSize = Math.min(bytesAvailable, maxBufferSize);
               bytesRead = fileInputStream.read(buffer, 0, bufferSize);   

              }

             // send multipart form data necesssary after file data...
             dos.writeBytes(lineEnd);
             dos.writeBytes(twoHyphens + boundary + twoHyphens + lineEnd);

             // Responses from the server (code and message)
             serverResponseCode = conn.getResponseCode();
             String serverResponseMessage = conn.getResponseMessage();

             Log.i("uploadFile", "HTTP Response is : "
                     + serverResponseMessage + ": " + serverResponseCode);

             if(serverResponseCode == 200){

                 runOnUiThread(new Runnable() {
                      public void run() {

                           Toast.makeText(BackupTest.this, "File Upload Complete.", 
                                       Toast.LENGTH_SHORT).show();
                      }
                  });                
             }    

             //close the streams //
             fileInputStream.close();
             dos.flush();
             dos.close();

        } catch (MalformedURLException ex) {

            dialog.dismiss();  
            ex.printStackTrace();

            runOnUiThread(new Runnable() {
                public void run() {
                    Toast.makeText(BackupTest.this, "MalformedURLException", 
                                                        Toast.LENGTH_SHORT).show();
                }
            });

            Log.e("Upload file to server", "error: " + ex.getMessage(), ex);  
        } catch (Exception e) {

            dialog.dismiss();  
            e.printStackTrace();

            runOnUiThread(new Runnable() {
                public void run() {

                    Toast.makeText(BackupTest.this, "Got Exception : see logcat ", 
                            Toast.LENGTH_SHORT).show();
                }
            });
            Log.e("Upload file to server Exception", "Exception : "
                                             + e.getMessage(), e);  
        }
        dialog.dismiss();       
        return serverResponseCode; 

     } // End else block 
   } 
public void downloadFileFromServer(String filename, String urlString) throws MalformedURLException, IOException
{
    BufferedInputStream in = null;
    FileOutputStream fout = null;
    int bytesRead, bytesAvailable, bufferSize;

    int maxBufferSize = 1 * 1024 * 1024; 
    try
    {
        URL url = new URL(urlString);

        in = new BufferedInputStream(url.openStream());
        fout = new FileOutputStream(filename);

        bytesAvailable = in.available(); 

        bufferSize = Math.min(bytesAvailable, maxBufferSize);

        byte data[] = new byte[bufferSize];
        int count;
        while ((count = in.read(data, 0, bufferSize)) != -1)
        {


            //POINT B
            fout.write(data, 0, count);

        }
    }
    finally
    {
        if (in != null)
                in.close();
        if (fout != null)
                fout.close();
    }

} 
因此,uploadFile()中A点的“缓冲区”值与downloadFileFromServer()中B点的“数据”值不同

样本值:

缓冲区=[B@41df59c8

资料=[B@41e1a310


谢谢

您发布的“示例值”是对象类的toString()方法为字节数组返回的字符串,而不是数组的内容。若要查看数组的内容,请使用Arrays类的toString()方法创建可打印字符串。发送和接收的数据中有哪些值不同?好的,我使用Arrays类toString()检查了这些值,不同之处在于接收的数组似乎有两个额外的零,并且在0,0]结尾处有“]”这在发送的值中不存在。知道如何使它们相同吗?数组类的toString()方法的末尾是“]吗?您是否查看了servlet保存在服务器上的文件?还好吗?服务器上的代码是否有问题?服务器上是否有两个程序需要测试:一个用于读取并保存服务器上的文件,另一个用于读取保存的文件并将其发送到下载代码?