将参数传递到 Asynctask



我正在使用 AsyncTask 将文件发送到服务器。Asynctask 是一个不同的类文件,不在 MainActivity 中。我面临的问题是当我在 MainActivity 类中编写 AsyncTask 时。 一切都很好。 但是当我通过从 MainActivity 访问此类来编写不同的 Java 类并发送参数时,我收到这些错误

02-23 01:06:46.995: I/System.out(1191): path is[Ljava.lang.String;@b1dccd40
02-23 01:06:47.125: E/Debug(1191): error: /[Ljava.lang.String;@b1dccd40: open failed: ENOENT (No such file or directory)
02-23 01:06:47.125: E/Debug(1191): java.io.FileNotFoundException: /[Ljava.lang.String;@b1dccd40: open failed: ENOENT (No such file or directory)

这是我的代码

public class ASync extends AsyncTask<String, Void, String>
{
    protected String doInBackground(String... path) {
         System.out.println("path is" + path);
         HttpURLConnection conn = null;
         DataOutputStream dos = null;
         DataInputStream inStream = null;
         String lineEnd = "rn";
         String twoHyphens = "--";
         String boundary =  "*****";
         int bytesRead, bytesAvailable, bufferSize;
         byte[] buffer;
         int maxBufferSize = 4*1024*1024;
         String responseFromServer = "";
         String urlString = "http://path";
         try
         {
   /*----- i think this line is causing an error */
       FileInputStream fileInputStream =  new FileInputStream(new File(path.toString()) );
       /**----/       
             // open a URL connection to the Servlet
          URL url = new URL(urlString);
          // Open a HTTP connection to the URL
          conn = (HttpURLConnection) url.openConnection();
          conn.setConnectTimeout(7000);
          // Allow Inputs
          conn.setDoInput(true);
          // Allow Outputs
          conn.setDoOutput(true);
          // Don't use a cached copy.
          conn.setUseCaches(false);
          // Use a post method.
          conn.setRequestMethod("POST");
          conn.setRequestProperty("Connection", "Keep-Alive");
          conn.setRequestProperty("Content-Type", "multipart/form-data;boundary="+boundary);
          dos = new DataOutputStream( conn.getOutputStream() );
          dos.writeBytes(twoHyphens + boundary + lineEnd);
          dos.writeBytes("Content-Disposition: form-data; name="uploadedfile";filename="" + path + """ + 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);
          // close streams
          Log.e("Debug","File is written");
          fileInputStream.close();
          dos.flush();
          dos.close();
         }
         catch (MalformedURLException ex)
         {
              Log.e("Debug", "error: " + ex.getMessage(), ex);
         }
         catch (IOException ioe)
         {
              Log.e("Debug", "error: " + ioe.getMessage(), ioe);
         }
         //------------------ read the SERVER RESPONSE
         try {
               inStream = new DataInputStream ( conn.getInputStream() );
               String str;
               while (( str = inStream.readLine()) != null)
               {
                    Log.e("Debug","Server Response "+str);
               }
               inStream.close();
         }
         catch (IOException ioex){
              Log.e("Debug", "error: " + ioex.getMessage(), ioex);
         }
        return null;
    }
    @Override
    protected void onPostExecute(String result) { 
    }
    @Override
    protected void onPreExecute() {
    }
    @Override
    protected void onProgressUpdate(Void... values) {
    }
    }

两个类之间的唯一区别(一个是如果我在 MainActivity 中编写 asyncTask 类,另一个是如果我编写单独的类.java文件)是这一行

MainActivity 中的 AsyncTask:(此代码工作正常)

FileInputStream fileInputStream = new FileInputStream(new File(selectedPath) );
//calling and passing parameter  like it.  
 new ASync().execute(selectedPath );

AsyncTask in in separate Java file(不起作用)

   FileInputStream fileInputStream =  new FileInputStream(new File(path.toString()) );
     //calling and passing parameter  like it. 
       AudioSync sync = new AudioSync(); 
      sync.execute(getPath(selectedPath);

可能是 b 参数传递问题。我是否以正确的方式使用FileInputStream并且是否正确传递了参数?请参阅代码片段。谢谢请告诉我如何通过在单独的类中声明来使此代码工作。

将参数传递到AsyncTask的构造函数中,如下所示:

new ASync(selectedPath).execute(selectedPath);

并实现您的AsyncTask,例如:

public class ASync extends AsyncTask<String, Void, String> 
{
 String pathstr="";
 public ASync(String str){
  this.pathstr=str;
  }
}

您的代码不起作用,因为它以错误的方式访问路径。

doInBackground(Params... params)使用varargs。所以基本上这种方法接受一个数组,而不是单个变量。

如果你的方法doInBackground(String... paths),你可以使用 paths[0] 获取第一个(有时是唯一的)路径。您可能需要事先检查paths是否null

最新更新