本帖最后由 李兆宁 于 2012-10-20 19:51 编辑
- public static void readIn() throws IOException
- {
- InputStream in = System.in;
- StringBuilder sb = new StringBuilder
- while(true)
- {
- int ch = in.read();
- if (ch=='\r')
- continue;
- if (ch=='\n')
- {
- String s = sb.toString();
- if ("over".equals(s))
- break;
- System.out.println(s.toUpperCase());
- sb.delete(0,sb.length());
- }
- else
- sb.append((char)ch);
- }
- }
复制代码 在主函数中调用,编译报错,看半天没找出个所以然。。。
|