码迷,mamicode.com
首页 > 编程语言 > 详细

JAVA初始化文件代码

时间:2019-06-05 17:50:36      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:代码   exist   bsp   create   string   java初始化   sts   exists   pat   

//初始化路径
File file = new File(SavePath);
            if (!file.exists()) {
                file.mkdirs();
            }
 
//初始化文件
String filePath=SavePath+fileName;
            file = new File(filePath);
            if (!file.exists()) {
                file.createNewFile();
            }

JAVA初始化文件代码

标签:代码   exist   bsp   create   string   java初始化   sts   exists   pat   

原文地址:https://www.cnblogs.com/caichaoxiang919/p/10980950.html

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