java基础之I/O操作
Posted 看不尽的尘埃
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java基础之I/O操作相关的知识,希望对你有一定的参考价值。
直接上代码:
import java.io.*; class Test{ public static void main(String[] args){ FileInputStream inputfile = null; FileOutputStream outputfile = null; try{ inputfile = new FileInputStream("./input.txt"); outputfile = new FileOutputStream("./output.txt"); byte[] buffer = new byte[100]; int temp = inputfile.read(buffer,0,buffer.length); String s = new String(buffer); s = s.trim(); System.out.println(s); outputfile.write(buffer,0,temp); } catch(Exception e){ System.out.println(e); } } }
以上是关于java基础之I/O操作的主要内容,如果未能解决你的问题,请参考以下文章