zoukankan      html  css  js  c++  java
  • 吴裕雄--天生自然JAVAIO操作学习笔记:内存操作流、管道流与打印流操作

    import java.io.* ;
    class Send implements Runnable{            // 线程类
        private PipedOutputStream pos = null ;    // 管道输出流
        public Send(){
            this.pos = new PipedOutputStream() ;    // 实例化输出流
        }
        public void run(){
            String str = "Hello World!!!" ;    // 要输出的内容
            try{
                this.pos.write(str.getBytes()) ;
            }catch(IOException e){
                e.printStackTrace() ;
            }
            try{
                this.pos.close() ;
            }catch(IOException e){
                e.printStackTrace() ;
            }
        }
        public PipedOutputStream getPos(){    // 得到此线程的管道输出流
            return this.pos ;    
        }
    };
    class Receive implements Runnable{
        private PipedInputStream pis = null ;    // 管道输入流
        public Receive(){
            this.pis = new PipedInputStream() ;    // 实例化输入流
        }
        public void run(){
            byte b[] = new byte[1024] ;    // 接收内容
            int len = 0 ;
            try{
                len = this.pis.read(b) ;    // 读取内容
            }catch(IOException e){
                e.printStackTrace() ;
            }
            try{
                this.pis.close() ;    // 关闭
            }catch(IOException e){
                e.printStackTrace() ;
            }
            System.out.println("接收的内容为:" + new String(b,0,len)) ;
        }
        public PipedInputStream getPis(){
            return this.pis ;
        }
    };
    public class PipedDemo{
        public static void main(String args[]){
            Send s = new Send() ;
            Receive r = new Receive() ;
            try{
                s.getPos().connect(r.getPis()) ;    // 连接管道
            }catch(IOException e){
                e.printStackTrace() ;
            }
            new Thread(s).start() ;    // 启动线程
            new Thread(r).start() ;    // 启动线程
        }
    };
    import java.io.* ;
    public class PrintDemo01{
        public static void main(String arg[]) throws Exception{
            PrintStream ps = null ;        // 声明打印流对象
            // 如果现在是使用FileOuputStream实例化,意味着所有的输出是向文件之中
            ps = new PrintStream(new FileOutputStream(new File("d:" + File.separator + "test.txt"))) ;
            ps.print("hello ") ;
            ps.println("world!!!") ;
            ps.print("1 + 1 = " + 2) ;
            ps.close() ;
        }
    };
    import java.io.* ;
    public class PrintDemo02{
        public static void main(String arg[]) throws Exception{
            PrintStream ps = null ;        // 声明打印流对象
            // 如果现在是使用FileOuputStream实例化,意味着所有的输出是向文件之中
            ps = new PrintStream(new FileOutputStream(new File("d:" + File.separator + "test.txt"))) ;
            String name = "李兴华" ;    // 定义字符串
            int age = 30 ;                // 定义整数
            float score = 990.356f ;    // 定义小数
            char sex = 'M' ;            // 定义字符
            ps.printf("姓名:%s;年龄:%d;成绩:%f;性别:%c",name,age,score,sex) ;
            ps.close() ;
        }
    };
    import java.io.* ;
    public class PrintDemo03{
        public static void main(String arg[]) throws Exception{
            PrintStream ps = null ;        // 声明打印流对象
            // 如果现在是使用FileOuputStream实例化,意味着所有的输出是向文件之中
            ps = new PrintStream(new FileOutputStream(new File("d:" + File.separator + "test.txt"))) ;
            String name = "李兴华" ;    // 定义字符串
            int age = 30 ;                // 定义整数
            float score = 990.356f ;    // 定义小数
            char sex = 'M' ;            // 定义字符
            ps.printf("姓名:%s;年龄:%s;成绩:%s;性别:%s",name,age,score,sex) ;
            ps.close() ;
        }
    };
  • 相关阅读:
    《那些年,我们拿下FPGA》做笔记
    三种初始化
    hdu4417 Super Mario 树阵离线/划分树
    【设计模式】文章摘要 查找联系人控件
    STL set
    阐述 QUEST CENTRAL FOR DB2 八罪
    使用线程执行堆栈StackTraceElement设计Android日志模块
    苹果iOS苹果公司的手机用户都有权索赔
    Android 4.4 沉浸式透明状态栏与导航栏
    常见的几种RuntimeException
  • 原文地址:https://www.cnblogs.com/tszr/p/12161237.html
Copyright © 2011-2022 走看看