首页>代码>java io操作实例代码详解>/IOStream/src/Stream/TestInputStreamReader.java
package Stream;
import java.io.*;
public class TestInputStreamReader {

	public static void main(String[] args) {
		InputStreamReader isr=new InputStreamReader(System.in);
		BufferedReader br=new BufferedReader(isr);
		String s=null;
		try{
			s=br.readLine();
			while(s!=null){
				if(s.equalsIgnoreCase("exit"))
					break;
				System.out.println(s.toUpperCase());
				s=br.readLine();
			}
			br.close();
		}catch(IOException e){
			e.printStackTrace();
		}
	}

}
最近下载更多
又见梨园  LV1 2022年6月1日
912299793  LV21 2021年6月11日
1719863922  LV11 2021年3月12日
_Louis  LV8 2020年3月18日
luohaipeng  LV23 2019年12月3日
zywzywzyw1  LV17 2019年9月17日
低调人  LV38 2019年8月4日
dvd速度  LV9 2019年6月1日
1979969842  LV12 2019年1月13日
DawnWalker  LV19 2018年12月14日
最近浏览更多
1102445814  LV1 2022年6月25日
又见梨园  LV1 2022年6月1日
双鱼座程序员7号  LV6 2022年4月23日
912299793  LV21 2021年6月11日
1719863922  LV11 2021年3月12日
__起飞的猪  LV10 2020年11月1日
1562784308  LV8 2020年8月18日
admin1021  LV6 2020年7月6日
_Louis  LV8 2020年3月18日
1743185983  LV2 2019年12月26日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友