多选题
Given:
2. import java.io.*;
3. public class Uboat {
4. public static void main(String[] args) {
5. try {
6. File f1 = new File("sub1");
7. f1.mkdir();
8. File f2 = new File(f1, "sub2");
9. File f3 = new File(f1, "sub3");
10. PrintWriter pw = new PrintWriter(f3);
11. } catch (Exception e) {System.out.println("ouch"); }
12. } }
And, if the code compiles, what is the result if "java Uboat" is invoked TWICE? (Choose all that apply.)