All pastes #2058593 Raw Edit

Someone

public text v1 · immutable
#2058593 ·published 2011-05-13 22:41 UTC
rendered paste body
public class Noted extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        	File myDir=new File("/sdcard/notes");
        	myDir.mkdirs();
        	try{
        	File myFile=new File("/sdcard/notes/FileOut.txt");
        	myFile.createNewFile();
        	}
            catch (IOException e) {
	            e.printStackTrace();