java IO复习
Posted 不被女生喜欢好多年
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java IO复习相关的知识,希望对你有一定的参考价值。
package com.zyw.file; import java.io.*; /** * Created by zyw on 2016/3/10. */ public class FileTest2 { public static void main(String args[]){ File file=new File("G:","work.txt"); FileOutputStream fos=null; DataOutputStream dos=null; try{ fos=new FileOutputStream(file); dos=new DataOutputStream(fos); try { dos.writeUTF("沉舟侧畔千帆过,病树前头万木春"); } catch (IOException e) { e.printStackTrace(); } }catch (FileNotFoundException e){ e.printStackTrace(); }finally { if(dos!=null) try { dos.close(); } catch (IOException e) { e.printStackTrace(); } if(fos!=null) try { fos.close(); } catch (IOException e) { e.printStackTrace(); } } } }
以上是关于java IO复习的主要内容,如果未能解决你的问题,请参考以下文章