我有一个应用程序,其中我有一个实现 locationlistener 的服务类。我希望能够将在 onLocationChanged() 中收到的位置传递回我的主要活动。到目前为止,我一直在尝试通过写入 SQLite 数据库来实现这一点,但是在尝试打开数据库以使其可写时出现错误。我相信这与没有写上下文有关,但我无法弄清楚。但是,当我在 onCreate() 中写入数据库时,它可以正常工作。我最初只是尝试这样做:
@Override
public void onLocationChanged(Location loc) {//Spits out single location for current disconnect
System.out.println("location equals "+loc);
latitude=Double.toString(loc.getLatitude());
longitude=Double.toString(loc.getLongitude());
writeToDb(MyLocListener.this,latitude,longitude);
man.removeUpdates(listener);//Stops location manager from listening for updates
listener=null;
man=null;
}
public void writeToDb(Context context,String latitude,String longitude){
db=new DbAdapter(context);
db.openToWrite();
db.deleteAll();
db.insert(latitude);
db.insert(longitude);
db.close();
}
但这没有用,每次都会在 db.openToWrite() 行上给我一个 nullPointerException 。getApplicationContext() 在这里也不起作用。
我现在已将其修改为在线程中写入数据库:
@Override
public void onLocationChanged(Location loc) {//Spits out single location for current disconnect
System.out.println("location equals "+loc);
latitude=Double.toString(loc.getLatitude());
longitude=Double.toString(loc.getLongitude());
Runnable runner=new SaveLocation(latitude,longitude);
new Thread(runner).start();
man.removeUpdates(listener);//Stops location manager from listening for updates
listener=null;
man=null;
}
public class SaveLocation implements Runnable{
String latitude;
String longitude;
// DbAdapter db;
public SaveLocation(String latitude,String longitude){
this.latitude=latitude;
this.longitude=longitude;
}
@Override
public void run() {
db.openToWrite();
db.deleteAll();
db.insert(latitude);
db.insert(longitude);
db.close();
}
}
我在 onCreate() 方法中将数据库初始化为:
public class MyLocListener extends Service implements LocationListener{
static LocationManager man;
static LocationListener listener;
static Location location;
public DbAdapter db;
@Override
public void onCreate() {
super.onCreate();
this.db=new DbAdapter(MyLocListener.this);
}
但是现在,这第二次尝试不断给我一个更简洁的错误,但它仍然在我尝试打开数据库以使其可写的那一行出现故障。MyLocListener.java:92 行是指 db.openToWrite();
错误是:
05-30 15:35:19.698: W/dalvikvm(4557): threadid=9: thread exiting with uncaught exception (group=0x4001d7e0)
05-30 15:35:19.706: E/AndroidRuntime(4557): FATAL EXCEPTION: Thread-10
05-30 15:35:19.706: E/AndroidRuntime(4557): java.lang.NullPointerException
05-30 15:35:19.706: E/AndroidRuntime(4557): at com.phonehalo.proto.MyLocListener$SaveLocation.run(MyLocListener.java:92)
05-30 15:35:19.706: E/AndroidRuntime(4557): at java.lang.Thread.run(Thread.java:1096)