我正在尝试在 AsyncTask 中获取共享首选项,但我不明白。
我如何在这里使用上下文?
package com.example.wettkampftimerbt;
import java.io.DataOutputStream;
import java.io.IOException;
import java.net.Socket;
import java.net.URL;
import android.content.Context;
import android.content.SharedPreferences;
import android.os.AsyncTask;
public class network extends AsyncTask<URL, String, String> {
private final String PREFS_NAME = "prefs", W1 = "w1", W2="w2", W3="w3", W4="w4",
W5="w5", W6="w6", W7="w7", SENDBEG="sendbeg", SENDEND="sendend";
int w1, w2, w3, w4, w5, w6, w7, sendend, sendbeg;
protected String doInBackground(URL... params) {
int c2, c3, c4, c5, c6;
int w0 = 00;
try {
w1 = sendbeg;
c2 = w2;
c3 = w3;
c4 = w4;
c5 = w5;
c6 = w6;
w7 = sendend;
Socket ss = new Socket("192.168.3.100", 4455);
System.out.println(ss);
boolean stopData = true;
System.out.println("lane1 stop send");
DataOutputStream dos = new DataOutputStream(
ss.getOutputStream());
while (stopData) {
dos.writeByte(w0);
dos.writeByte(w1);
dos.writeByte(c2);
dos.writeByte(c3);
dos.writeByte(c4);
dos.writeByte(c5);
dos.writeByte(c6);
dos.writeByte(w7);
stopData=false;
}
} catch (IOException e) {
System.out.println("IO error" + e);
e.printStackTrace();
}
return "Done";
}
public void onPreExecute(){
Context context = network.this;
SharedPreferences prefs = context.getSharedPreferences("PREFS_NAME");
doInBackground();
}
public void getPrefs (Context context){
w1= Integer.valueOf(context.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE).getString(W1, "00"));
w2= Integer.valueOf(context.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE).getString(W2, "00"));
w3= Integer.valueOf(context.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE).getString(W3, "00"));
w4= Integer.valueOf(context.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE).getString(W4, "00"));
w5= Integer.valueOf(context.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE).getString(W5, "00"));
w6= Integer.valueOf(context.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE).getString(W6, "00"));
w7= Integer.valueOf(context.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE).getString(W7, "00"));
sendbeg= Integer.valueOf(context.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE).getString(SENDBEG, "00"));
sendend= Integer.valueOf(context.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE).getString(SENDEND, "00"));
}
}
这是片段,我的问题是:我没有错误,除了开始时的nullPointerException(由getPrefs(null);
?引起)。有人能帮我吗?
我已经阅读了很多上下文解释,甚至我访问过的 Android 开发者网站,但我不明白上下文是什么,以及它到底做了什么。
编辑:感谢您的快速回答,但它仍然无法正常工作。我现在把整个活动放在这里,你给了我一个样本,但我现在出错了。这取决于我,还是 Eclipse 讨厌我?
EDIT2:我自己调用 doInBackground,因为它不是自己启动的。
EDIT3:现在解决了,它有效^^我直接从我的主要活动中调用getPrefs,然后从getPrefs 调用网络......到目前为止很好,但是:我收到了这个NetworkOnMainThreadException错误。现在要做什么?