回答編集履歴
1
コードから PrintStream.flush() する行を削除:PrintStream は close() 時、自動的に flush() されるため。
test
CHANGED
@@ -18,12 +18,6 @@
|
|
18
18
|
|
19
19
|
out.print("before="+ before +"&wb_lp="+ direction);
|
20
20
|
|
21
|
-
|
22
|
-
|
23
|
-
// これが足りない
|
24
|
-
|
25
|
-
out.flush();
|
26
|
-
|
27
21
|
}
|
28
22
|
|
29
23
|
```
|