字节流写输入
作者:互联网
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
public class c5 {
public static void main(String[] args) throws IOException {
//创建文件输出流以指定名称写入数据
FileOutputStream fos=new FileOutputStream("D:\\eclipse.jee\\program\\test1\\666.txt");
//FileOutputStream fos=new FileOutputStream("src\\777.txt");
//byte[] bys= {97,98,99,100,101};
byte[] bys="abcde".getBytes(); //getBytes():返回字符串对应的字节数组
fos.write(bys);
//fos.write(bys,1,3); 从指定的索引1处写3个字符
//释放资源
fos.close();
}
}
标签:java,字节,fos,bys,FileOutputStream,io,流写,import,输入 来源: https://blog.csdn.net/lxp12138China/article/details/120193960