public static void method_1() throws IOException {
// TODO Auto-generated method stub
InputStream in = System.in;
int ch = in.read();
StringBuffer sb =new StringBuffer();
while((ch=in.read())!=-1)
{
if(ch=='\r')
continue;
if(ch=='\n')
{
String temp = sb.toString();
if("over".equals(temp))
break;
System.out.println(temp.toUpperCase());
sb.delete(0, sb.length());
}
else
{
sb.append((char)ch);
}
}
在主函数调用这个方法,如果你在控制台输入abc,得到的结果是什么。。
哈哈,不懂的,可以留言,哈哈 |
|