码迷,mamicode.com
首页 > 移动开发 > 详细

I/O流练习(二)——文件的替换移动

时间:2019-06-16 11:41:17      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:file   tst   exception   work   except   imp   create   new   int   

 1 import java.io.File;
 2         import java.io.FileWriter;
 3         import java.io.IOException;
 4 
 5 public class work {
 6 
 7     public static void main(String[] args) {
 8         //在电脑D盘下创建一个文件为HelloWorld.txt文件
 9         File file=new File("D:","HelloWorld.txt");
10         File file3=new File("E:","helloWorld.txt");
11         try {
12             FileWriter w = new FileWriter(file);
13             w.write("hello word!");
14             w.close();
15         }catch (IOException e ){
16             e.printStackTrace();
17         }
18         //创建文件,返回一个布尔值
19         boolean isCreate;
20         try {
21             isCreate = file.createNewFile();
22             if (isCreate) {
23                 System.out.println("创建文件成功!");
24             }else {
25                 System.out.println("创建文件失败!文件已经存在");
26             }
27         } catch (IOException e) {
28             System.out.println("创建文件失败!");
29         }
30 
31         if (file.renameTo(file3)) {
32             System.out.println("文件移动成功!");
33         } else {
34             System.out.println("文件移动失败");
35         }
36         System.out.println(file.exists());
37         }
38     }

 

I/O流练习(二)——文件的替换移动

标签:file   tst   exception   work   except   imp   create   new   int   

原文地址:https://www.cnblogs.com/TuTu-winer/p/11030155.html

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