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流的主要内容,如果未能解决你的问题,请参考以下文章
此应用小部件片段中所有意图 (PendingIntents) 的逻辑流
JAVA IO流相关代码(Serializable接口,管道流PipedInputStream类,RandomAccessFile类相关代码)