A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© javaeea 中级黑马   /  2015-9-26 20:45  /  122 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

package com.heima.gaoshuai.io;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;

public class IOTest {
        public static void main(String[] args) throws Exception {
               
               
        }
        //standard
        public static void demo03()throws Exception{
                FileInputStream fis = new FileInputStream("a.txt");// a.txt
                // (系统找不到指定的文件。)
                FileOutputStream fos = new FileOutputStream("b.txt");
                int b = 0;
                //fis.read(byte[]);
                if ((b = fis.read()) != -1) {// read()/read(byte)
                                fos.write(b);
                }
                fis.close();
                fos.close();

        }
        public static void demo02() throws Exception{
                //                String str = "C:\\Users\\Administrator\\Desktop";
                //                File file = new File(str);

                FileInputStream fis = new FileInputStream("C:\\Users\\Administrator\\Desktop\\新建文本文档 (3).txt");
                FileOutputStream fos = new FileOutputStream("新建文本文档 (3).txt");//file dest
                BufferedInputStream bis = new BufferedInputStream(fis);
                BufferedOutputStream bos = new BufferedOutputStream(fos);
                int a = 0;
                while((a=bis.read())!=-1){//read a个
                        bos.write(a);//write
                }
                bis.close();
                bos.close();
               
        }
        public static void demo01() throws Exception{
                // 字节输入流 程序
                FileInputStream fis1 = new FileInputStream("a.txt");
                byte[] bytes = new byte[3];// 字节截取,乱码
                int len = 0;
                while (-1 != (len = fis1.read(bytes))) {//read();/fis1.read();字节的asicc码表值
                        String str1 = new String(bytes);
                        System.out.print(str1);
                }
                // 字节输出流
                FileOutputStream fos1 = new FileOutputStream("b.txt");
                String str2 = "中国";
                byte[] bytes1 = str2.getBytes();
                fos1.write(bytes1);
        }
}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马