我是android编程的初学者。我的研究生项目是关于跟踪移动设备,我需要代码来保存位置(不使用GPS)作为文本文件。有人建议我这样做的代码。这对我有很大的帮助。
答案 0 :(得分:2)
locationManagerNetwork = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
Location location2 = locationManagerNetwork
.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
if (location2 != null) {
String message = String
.format("Yout location : \n Longitude: %1$s \n Latitude: %2$s",
location2.getLongitude(), location2.getLatitude());
Toast.makeText(getApplicationContext(), message, Toast.LENGTH_LONG)
.show();
//use here file writer if you want to write the coordinates in a text file
}
写sd卡
File sdcard = Environment.getExternalStorageDirectory();
File f = new File(sdcard, "/yourfile");
if(!f.exsist()){
f.createNewFile();
//Use outwriter here, outputstream search how to write into a file in java code
}
答案 1 :(得分:-1)
这样做的唯一方法就是与电话管理员一起玩,看看您可以获得有关手机信号塔或网络的信息。每个网络塔都有唯一的ID,因此您可以根据信号强度和人员位置的内容得到近似的估计值。
我敢打赌,这将是一件有趣且棘手的事情。