运行程序后,首次输入中文或者其他任何是没问题的,但是再此输入中文就有问题了,因为每次我输入后光标都返回到What前面,有什么方法可以使得输入后,光标可以回到“enter:”后面。而如果我不输入中文的话,这个就没问题的,请问一下这是为什么的呢?- package JavaReview;
- import java.io.*;
- public class Testing {
- public static void main(String[] args) throws IOException
- {
- BufferedReader bufr = new BufferedReader(new InputStreamReader(System.in));
- while(true)
- {
- String line = bufr.readLine();
- if("over".equals(line))
- break;
- System.out.println("What a day, Please re-enter:");
- System.out.println(" enter:"+line);
- }
-
- }
- }
复制代码 |
|