将网络位置保存为.txt文件(不使用GPS)

Mid*_*hun 5 java android geolocation

我是android编程的初学者.我的研究生项目是关于跟踪移动设备,我需要代码来保存位置(不使用GPS)作为文本文件.有人建议我这样做的代码.这对我来说是一个很大的帮助.

Tug*_*rul 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
            }
Run Code Online (Sandbox Code Playgroud)

用于写入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 
}
Run Code Online (Sandbox Code Playgroud)