使用来自Android的POST在服务器上上载文件时出现异常

使用来自Android的POST在服务器上上载文件时出现异常,android,post,file-upload,Android,Post,File Upload,我有一个服务器上传文件的服务器信息是 <form action="FileUpload" method="post" enctype="multipart/form-data"> Select File <input type="file" name="file1"> <p> Select Filename <input type="text" size="20" name="filename"> <p> <input type=

我有一个服务器上传文件的服务器信息是

<form action="FileUpload" method="post" enctype="multipart/form-data">
Select File <input type="file" name="file1">
<p>
Select Filename <input type="text" size="20" name="filename">
<p>
<input type=submit value="Upload">
</form>
它没有上传文件,但在下面给出了异常

12-16 01:04:37.031: E/MediaPlayer(24133): Headers are written
12-16 01:04:40.410: E/MediaPlayer(24133): error: http://paperify.net/tripmark/FileUpload
12-16 01:04:40.410: E/MediaPlayer(24133): java.io.FileNotFoundException: http://paperify.net/tripmark/FileUpload
12-16 01:04:40.410: E/MediaPlayer(24133):   at org.apache.harmony.luni.internal.net.www.protocol.http.HttpURLConnectionImpl.getInputStream(HttpURLConnectionImpl.java:521)
12-16 01:04:40.410: E/MediaPlayer(24133):   at com.paperify.tripmark.UploadPicture.doFileUpload(UploadPicture.java:141)
12-16 01:04:40.410: E/MediaPlayer(24133):   at com.paperify.tripmark.UploadPicture.doInBackground(UploadPicture.java:39)
12-16 01:04:40.410: E/MediaPlayer(24133):   at com.paperify.tripmark.UploadPicture.doInBackground(UploadPicture.java:1)
12-16 01:04:40.410: E/MediaPlayer(24133):   at android.os.AsyncTask$2.call(AsyncTask.java:185)
12-16 01:04:40.410: E/MediaPlayer(24133):   at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:306)
12-16 01:04:40.410: E/MediaPlayer(24133):   at java.util.concurrent.FutureTask.run(FutureTask.java:138)
12-16 01:04:40.410: E/MediaPlayer(24133):   at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1088)
12-16 01:04:40.410: E/MediaPlayer(24133):   at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:581)
12-16 01:04:40.410: E/MediaPlayer(24133):   at java.lang.Thread.run(Thread.java:1019)
12-16 01:04:40.437: E/MediaPlayer(24133): error: http://paperify.net/tripmark/FileUpload
12-16 01:04:40.437: E/MediaPlayer(24133): java.io.FileNotFoundException: http://paperify.net/tripmark/FileUpload
12-16 01:04:40.437: E/MediaPlayer(24133):   at org.apache.harmony.luni.internal.net.www.protocol.http.HttpURLConnectionImpl.getInputStream(HttpURLConnectionImpl.java:521)
12-16 01:04:40.437: E/MediaPlayer(24133):   at com.paperify.tripmark.UploadPicture.doFileUpload(UploadPicture.java:167)
12-16 01:04:40.437: E/MediaPlayer(24133):   at com.paperify.tripmark.UploadPicture.doInBackground(UploadPicture.java:39)
12-16 01:04:40.437: E/MediaPlayer(24133):   at com.paperify.tripmark.UploadPicture.doInBackground(UploadPicture.java:1)
12-16 01:04:40.437: E/MediaPlayer(24133):   at android.os.AsyncTask$2.call(AsyncTask.java:185)
12-16 01:04:40.437: E/MediaPlayer(24133):   at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:306)
12-16 01:04:40.437: E/MediaPlayer(24133):   at java.util.concurrent.FutureTask.run(FutureTask.java:138)
12-16 01:04:40.437: E/MediaPlayer(24133):   at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1088)
12-16 01:04:40.437: E/MediaPlayer(24133):   at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:581)
12-16 01:04:40.437: E/MediaPlayer(24133):   at java.lang.Thread.run(Thread.java:1019)
com.paperify.tripmark.UploadPicture.doFileUpload(UploadPicture.java:141)
的第一行是

BufferedReader in = new BufferedReader ( new InputStreamReader ( conn.getInputStream ( ) ) ) ;

我不知道我做错了什么。

使用HTTP客户端。下面是一个示例代码

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.mime.MultipartEntity;
import org.apache.http.entity.mime.content.FileBody;
import org.apache.http.entity.mime.content.StringBody;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.util.EntityUtils;

...

    public static void uploadFile() throws Exception {
        HttpClient httpclient = new DefaultHttpClient();
        try {
            HttpPost httppost = new HttpPost("http://paperify.net/tripmark/FileUpload");
            StringBody filename = new StringBody("filename.ext");
            File f = new File("src"+File.separator + "filename.ext");
            FileBody bin = new FileBody(f);
            StringBody comment = new StringBody("A binary file of some kind");

            MultipartEntity reqEntity = new MultipartEntity();
            reqEntity.addPart("file1", bin);
            reqEntity.addPart("filename", filename);
            reqEntity.addPart("comment", comment);

            httppost.setEntity(reqEntity);

            System.out.println("executing request " + httppost.getRequestLine());
            HttpResponse response = httpclient.execute(httppost);
            HttpEntity resEntity = response.getEntity();

            System.out.println("----------------------------------------");
            System.out.println(response.getStatusLine());
            if (resEntity != null) {
                System.out.println("Response content length: " + resEntity.getContentLength());
                    InputStream is = resEntity.getContent();
                        if (is != null) {
                        Writer writer = new StringWriter();

                        char[] buffer = new char[1024];
                        try {
                            Reader reader = new BufferedReader(
                                    new InputStreamReader(is, "UTF-8"));
                            int n;
                            while ((n = reader.read(buffer)) != -1) {
                                writer.write(buffer, 0, n);
                            }
                        } finally {
                            is.close();
                        }
                        System.out.println("Response content: "+writer.toString());
                    } else {        
                            System.out.println("Response nothing: ");
                    }


            }
            EntityUtils.consume(resEntity);
        } finally {
            try { httpclient.getConnectionManager().shutdown(); } catch (Exception ignore) {}
        }
    }

}
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.mime.MultipartEntity;
import org.apache.http.entity.mime.content.FileBody;
import org.apache.http.entity.mime.content.StringBody;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.util.EntityUtils;

...

    public static void uploadFile() throws Exception {
        HttpClient httpclient = new DefaultHttpClient();
        try {
            HttpPost httppost = new HttpPost("http://paperify.net/tripmark/FileUpload");
            StringBody filename = new StringBody("filename.ext");
            File f = new File("src"+File.separator + "filename.ext");
            FileBody bin = new FileBody(f);
            StringBody comment = new StringBody("A binary file of some kind");

            MultipartEntity reqEntity = new MultipartEntity();
            reqEntity.addPart("file1", bin);
            reqEntity.addPart("filename", filename);
            reqEntity.addPart("comment", comment);

            httppost.setEntity(reqEntity);

            System.out.println("executing request " + httppost.getRequestLine());
            HttpResponse response = httpclient.execute(httppost);
            HttpEntity resEntity = response.getEntity();

            System.out.println("----------------------------------------");
            System.out.println(response.getStatusLine());
            if (resEntity != null) {
                System.out.println("Response content length: " + resEntity.getContentLength());
                    InputStream is = resEntity.getContent();
                        if (is != null) {
                        Writer writer = new StringWriter();

                        char[] buffer = new char[1024];
                        try {
                            Reader reader = new BufferedReader(
                                    new InputStreamReader(is, "UTF-8"));
                            int n;
                            while ((n = reader.read(buffer)) != -1) {
                                writer.write(buffer, 0, n);
                            }
                        } finally {
                            is.close();
                        }
                        System.out.println("Response content: "+writer.toString());
                    } else {        
                            System.out.println("Response nothing: ");
                    }


            }
            EntityUtils.consume(resEntity);
        } finally {
            try { httpclient.getConnectionManager().shutdown(); } catch (Exception ignore) {}
        }
    }

}