Advertisement
Guest User

Untitled

a guest
Apr 24th, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1.    public void Clear(View view) throws IOException {
  2.        OutputStreamWriter out = new
  3.                OutputStreamWriter(openFileOutput("myfilename.txt",MODE_MULTI_PROCESS));
  4.        out.write(" ");
  5.        out.close();
  6.    }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement