Advertisement
Guest User

Untitled

a guest
Feb 5th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. public class Test {
  2. public static void main (String args[]) throws IOException {
  3. for(int i = 0; i < 10; i++) {
  4. for(int j = 0; j < 10; j++) {
  5. PrintWriter writer = new PrintWriter("/Users/me/testingStuff/" + String.valueOf(i) + "_" + String.valueOf(j) + "_.txt", "UTF-8");
  6. writer.write("yo");
  7. }
  8. }
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement