Android:文件上传/下载在模拟器上工作但不在设备上工作

时间:2013-11-11 17:16:56

标签: java android file-upload

我一直致力于一个需要上传文件并从移动设备下载文件的项目。我在模拟器上运行的代码很好(我使用genymotion模拟器因为它更快)但在我的个人设备上,这两个功能都不起作用。这是我用于上传功能的内容:

    public int uploadFile(String sourceFileUri) {


    String fileName = sourceFileUri;

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

    if (!sourceFile.isFile()) {

         dialog.dismiss();

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

         runOnUiThread(new Runnable() {
             public void run() {
                Log.e("Upload","Source File not exist :"
                         +uploadFilePath + "" + curFileName);
             }
         });

         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
             /********************* Header *****************************************************/
             conn.setRequestMethod("POST");
             conn.setRequestProperty("Connection", "Keep-Alive");
             conn.setRequestProperty("Accept-Charset", "UTF-8");
             conn.setRequestProperty("ENCTYPE", "multipart/form-data");
             conn.setRequestProperty("Content-Type", "multipart/form-data;boundary=" + boundary); 
             conn.setRequestProperty("uploaded_file", sourceFileUri); 
             /********************  Body *******************************************************/             

             dos = new DataOutputStream(conn.getOutputStream());
             //
             //     Version data
             /////////////////////////////////////////////////////////////

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

             /////////////////////////////////////////////////////////////
             //     End Version data
             //
             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) {

               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(Tossup.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(Tossup.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() {
                    Log.e("Upload","Shit got real");
                    Toast.makeText(Tossup.this, "Got Exception : see logcat ",
                            Toast.LENGTH_SHORT).show();
                }
            });
            Log.e("Upload", "Exception : "
                                             + e.getMessage(), e); 
        } 

         try {
             //inStream = new DataInputStream(conn.getInputStream());
             BufferedReader br = new BufferedReader(new InputStreamReader(conn.getInputStream()));


             while ((str = br.readLine()) != null) {

                 Log.d("Debug", "Server Response " + str);

             }

         } catch (IOException ioex) {
             Log.e("Debug", "error: " + ioex.getMessage(), ioex);
         }

        dialog.dismiss();      
        return serverResponseCode;

     } // End else block
   }

我无法追踪此问题的根源,StackOverflow非常善于帮助我处理其他问题。任何建议赞赏!感谢。

更新:我删除了下载代码,因为这不会导致问题

0 个答案:

没有答案