Note that there are some explanatory texts on larger screens.

plurals
  1. POHow can i save the taken network location?
    primarykey
    data
    text
    <pre><code> package com.locatn; import java.io.File; import java.io.IOException; import java.io.OutputStream; import java.io.OutputStreamWriter; import java.io.Writer; import android.app.Activity; import android.content.Context; import android.location.LocationManager; import android.os.Bundle; import android.os.Environment; import android.widget.Toast; public class Location extends Activity { private LocationManager locationManagerNetwork; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); locationManagerNetwork = (LocationManager) getSystemService(Context.LOCATION_SERVICE); android.location.Location location2 = locationManagerNetwork .getLastKnownLocation(LocationManager.NETWORK_PROVIDER); if (location2 != null) { `enter code here` 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(); </code></pre> <blockquote> <p>// I am getting many errors in the saving part of this code.<br> Friends please help me to correct this code. I want to save the taken location info as a txt file and save it to SD card. Please help me friends..... //</p> </blockquote> <pre><code>// following are the errors // // Illegal modifier for the local class WriteTextFileExample; only abstract or final is permitted // *public class WriteTextFileExample{ // The method main cannot be declared static; static methods can only be declared in a static or top level type // public static void main(String[] args)throws IOException{ Writer output = null; File sdcard = Environment.getExternalStorageDirectory(); File file = new File("/sdcard/andsecure/mysdfile.txt"); // Multiple markers at this line // // - BufferedWriter cannot be resolved to a type // // - BufferedWriter cannot be resolved to a type // // - Cannot refer to a non-final variable location2 inside an inner class defined in a different // // method - FileWriter cannot be resolved to a type // output = new BufferedWriter(new FileWriter(location2)); // text cannot be resolved to a variable // output.write(text); output.close();*** } } } } } </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload