IO流

Posted zhangkaiz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IO流相关的知识,希望对你有一定的参考价值。

package three;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;

public class IO 

    public static void main(String[] args) 
        File file = new File("data.txt");
        System.out.println("路径:"+file.getAbsolutePath());
        try 
            FileOutputStream out = new FileOutputStream(file);
            byte[] str = "[email protected]#%&*软件工程".getBytes();
            out.write(str);
            out.close();
        catch(Exception e) 
            e.printStackTrace();
        
        try 
            FileInputStream in = new FileInputStream(file);
            byte[] str1 = new byte[100];
            int length = in.read(str1);
            System.out.println("文件中的信息是:"+ new String(str1,0,length));
            in.close();
        catch(Exception e) 
            e.printStackTrace();
        
    

技术图片

 技术图片

 

以上是关于IO流的主要内容,如果未能解决你的问题,请参考以下文章

在 .net 中处理 pcm wav 流

此应用小部件片段中所有意图 (PendingIntents) 的逻辑流

JavaSE 一些技巧 04——IO流各种流常用代码整理

猜数小游戏升级版(IO流实现,对IO流进行加强理解运用)

利用IO(文件字符流)打印代码本身

JAVA IO流相关代码(Serializable接口,管道流PipedInputStream类,RandomAccessFile类相关代码)