Android 上的 Java 访问分段上传的共享首选项时出错

标签 java android multipartform-data

我需要有关此问题的帮助。我正在尝试将文件上传到当前工作正常的远程服务器。我还可以将用户电子邮件保存到共享首选项。但是在尝试在异步任务中访问电子邮件时。它不断给出错误:

E/AndroidRuntime:致命异常:AsyncTask #2 java.lang.RuntimeException:执行 doInBackground() 时发生错误 在 android.os.AsyncTask$3.done(AsyncTask.java:309) 在java.util.concurrent.FutureTask.finishCompletion(FutureTask.java:354) 在 java.util.concurrent.FutureTask.setException(FutureTask.java:223) 在 java.util.concurrent.FutureTask.run(FutureTask.java:242) 在 android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:234) 在java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113) 在 java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588) 在 java.lang.Thread.run(Thread.java:818) 引起原因:java.lang.NullPointerException:尝试在空对象引用上调用虚拟方法“java.lang.String android.content.Context.getPackageName()” $1.doInBackground(PASSMobileAudioService.java:165) 在 android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:234) 在java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113) 在 java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588) 在 java.lang.Thread.run(Thread.java:818)

这是我的代码:

       public class PASSMobileAudioService extends Service implements MediaRecorder.OnInfoListener {

private static Context mContext;
public PASSMobileAudioService(Context mContext) {
    this.mContext = mContext;

}

        public void uploadAudio(final String existingFileName)  {
    this.mFileName = existingFileName;

    new AsyncTask<String, Void, Void>() {

        @Override
        protected Void doInBackground(String... params) {
            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 = "";
            String urlString = Constant.UPLOAD_AUDIO;
            SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(mContext);
            String email = prefs.getString(Constant.USER_EMAIL, "");

            try {
                //------------------ CLIENT REQUEST
                FileInputStream fileInputStream = new FileInputStream(new File(existingFileName));
                // open a URL connection to the Servlet
                URL url = new URL(urlString);
                // Open a HTTP connection to the URL
                conn = (HttpURLConnection) url.openConnection();
                // 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=\"userid=\"" + lineEnd);
                dos.writeBytes("Content-Type: text/plain; charset=US-ASCII" + lineEnd);
                dos.writeBytes("Content-Transfer-Encoding: 8bit" + lineEnd);
                dos.writeBytes(lineEnd);
                dos.writeBytes(email + lineEnd);

                dos.writeBytes(twoHyphens + boundary + lineEnd);
                dos.writeBytes("Content-Disposition: form-data; name=\"sessionid=\"" + lineEnd);
                dos.writeBytes("Content-Type: text/plain; charset=US-ASCII" + lineEnd);
                dos.writeBytes("Content-Transfer-Encoding: 8bit" + lineEnd);
                dos.writeBytes(lineEnd);
                dos.writeBytes(sessionid + lineEnd);

                dos.writeBytes(twoHyphens + boundary + lineEnd);
                dos.writeBytes("Content-Disposition: form-data; name=\"upload\";filename=\"" + existingFileName + "\"" + 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;
        }
    }.execute();
}

最佳答案

您的根本错误消息是尝试在 PASSMobileAudioService.java:165 中的空对象引用上调用虚拟方法“java.lang.String android.content.Context.getPackageName()”

我假设这一行是:

SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(mContext);

在本例中,mContext 为 null。

对于本类(class),您没有任何其他背景信息,所以这就是我能为您提供的全部信息。确保您的上下文不为空。

关于Android 上的 Java 访问分段上传的共享首选项时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44594233/

相关文章:

java - 如何使用 android 使用 ip camera 拍照

jQuery 文件上传 - GAE 删除上传的 blob

java - 更新存储在阻塞优先级队列中的自定义对象

java - 序列化外部对象

具有固定 UID 的 Android NFC 卡模拟

Android Multipart HTTP Post 不发送文件的 MIME 类型

php - 如何处理 PHP 请求中的长 header 声明?

java - Apache Camel 。所有路由的基本配置

java - 对象究竟在什么时候可用于垃圾回收?

android - 从 DefaultHandler 中获取 Drawable 资源