質問編集履歴
1
wd
title
CHANGED
File without changes
|
body
CHANGED
@@ -28,4 +28,22 @@
|
|
28
28
|
Thread.sleep(10 * 1000);
|
29
29
|
} catch (InterruptedException e) {
|
30
30
|
e.printStackTrace();
|
31
|
+
}
|
32
|
+
|
33
|
+
試し1 下記試してみましたが表示されたままでした
|
34
|
+
System.out.println(" || " + + matchPatternPic.get(targetIndex));
|
35
|
+
try {
|
36
|
+
Thread.sleep(1 * 1000);
|
37
|
+
} catch (InterruptedException e) {
|
38
|
+
e.printStackTrace();
|
39
|
+
}
|
40
|
+
System.out.printf("\033[2J");
|
41
|
+
|
42
|
+
試し2
|
43
|
+
System.out.println(" || " + + matchPatternPic.get(targetIndex));
|
44
|
+
try {
|
45
|
+
Thread.sleep(1 * 1000);
|
46
|
+
System.out.printf("\033[2J");
|
47
|
+
} catch (InterruptedException e) {
|
48
|
+
e.printStackTrace();
|
31
49
|
}
|