java中讲讲InputStream的用法,举例?


2.1 InputStream的用法 (视频下载) (全部书籍)InputStream 是个抽象类,有个抽象方法read(),即一次读一个字节。马克-to-win:前面我们经常用到System.out.println(),实际上同样 经常用的System.in就是Sun编的一个InputStream的实例对象。它的read方法就是一次从控制台读入一个字节。下面的实验会证明它无 法直接处理中文, 需要将来用到字符流。


例:2.1.1

import java.io.*;
public class TestMark_to_win {
    public static void main(String args[]) throws Exception {
        byte inp[] = new byte[4];

        for (int i = 0; i < 4; i++) {
/* 这里的read方法,一次读一个字节。Reads the next byte of data from the input stream. The value byte is returned as an int in the range 0 to 255.  so you must cast by yourself. when you run, you type in abcd, This method blocks until input
 data is available,
*/
            inp[i] = (byte) System.in.read();
        }
        for (int i = 0; i < 4; i++) {
            System.out.println(inp[i]);//打出数字
        }

        for (int i = 0; i < 4; i++) {
详情黏贴以下网址在地址栏后请进:

http://www.mark-to-win.com/index.html?content=JavaBeginner/javaUrl.html&chapter=JavaBeginner/JavaBeginner8_web.html#UsageOfInputStreamReader

智能推荐

注意!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系我们删除。



 
© 2014-2019 ITdaan.com 粤ICP备14056181号  

赞助商广告