码迷,mamicode.com
首页 > 其他好文 > 详细

使用OutputStream向屏幕上输出内容

时间:2018-10-01 10:31:16      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:tac   body   bytes   title   keyword   key   throws   puts   get   

使用OutputStream向屏幕上输出内容


/**   
 * 使用OutputStream向屏幕上输出内容    
 */   

import java.io.*;

class hello {

    public static void main(String[] args) throws IOException {

        OutputStream out=System.out;

        try{

            out.write("hello".getBytes());

        }catch (Exception e) {

            e.printStackTrace();

        }

        try{

            out.close();

        }catch (Exception e) {

            e.printStackTrace();

        }

    }

}

【运行结果】:

hello

使用OutputStream向屏幕上输出内容

标签:tac   body   bytes   title   keyword   key   throws   puts   get   

原文地址:https://www.cnblogs.com/yuyu666/p/9733921.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!