码迷,mamicode.com
首页 > 其他好文 > 详细

文件操作(创建和写)

时间:2014-09-20 18:22:29      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:io   os   ar   文件   sp   on   c   new   r   

  String separator = File.separator;
  String filename = "myfile.txt";
  String dir = "mydir1"+separator+"mydir2";
  File f = new File(dir,filename);
  
  if(f.exists()){
   System.out.println("文件名:"+f.getAbsolutePath());
   System.out.println("文件大小:"+f.length());
  }else{
   f.getParentFile().mkdirs();
   try {
    f.createNewFile();
    
   } catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
   }
  }
  FileWriter writer;
  try {
   writer = new FileWriter(f, true);
   writer.write("xxxxxxxx");
   writer.close();
  } catch (IOException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }

文件操作(创建和写)

标签:io   os   ar   文件   sp   on   c   new   r   

原文地址:http://www.cnblogs.com/oraclespace/p/3983431.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!