FileOutputSteam入门
Posted StanLong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了FileOutputSteam入门相关的知识,希望对你有一定的参考价值。
FileOutputSteam 字节输入流
从控制台将字节保存到本地硬盘
package com.isoftstone.io; import java.io.FileOutputStream; import java.io.IOException; public class TestFileOutStream { public static void main(String[] args){ FileOutputStream fos = null; try{ //1、创建文件字节输出流 fos = new FileOutputStream("E:\\output.txt"); //这种写法会将原文内容覆盖 //可以这样写,避免原文被覆盖 //fos = new FileOutputStream("E:\\output.text", true) //如果文件不存在,会自动创建 //2、开始写 String msg = "HelloWorld"; //3、将String转换成byte数组 byte[] bytes = msg.getBytes(); //4、将bytes数组中的所有数据全部写入 fos.write(bytes); //也可以只写入一部分 //fos.write(bytes, 0,3) //推荐最后的时候为了保证数据完全写入硬盘,所以要刷新 fos.flush(); }catch(Exception e){ }finally{ try { fos.close(); } catch (IOException e) { e.printStackTrace(); } } } }
以上是关于FileOutputSteam入门的主要内容,如果未能解决你的问题,请参考以下文章
Cg入门20:Fragment shader - 片段级模型动态变色(实现汽车动态换漆)
Cg入门19:Fragment shader - 片段级模型动态变色