java创建文件的路径|java如何创建文件

java创建文件的路径|java如何创建文件的第1张示图

『壹』 java怎么创建目录(删除/修改/复制目录及文

//2017年2月27日09:20:52 网络知道做demoFile f = new File("D:/test/1.txt");if(f.isFile()){f.renameTo(new File("D:/test/2.txt"));//文件重命名f.delete();//删除文件}File f2 = new File("D:/test/2/");if(f2.isDirectory()){f2.renameTo(new File("D:/test/3"));//文件夹重命名f2.delete();//删除文件夹}File f4 = new File("D:/test/4/111.txt");File f44 = new File("D:/test/4/222.txt");try {BufferedInputStream bis = new BufferedInputStream(new FileInputStream(f4));BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(f44));if(f4.isFile()){int x =0;while(-1!=(x=bis.read())){bos.write(x); //复制文件}bos.flush();bos.close();String parentFile = f4.getParent(); //获取文件所在文件夹路径new File(parentFile+"/newFile").mkdir(); //创建新文件夹File[] list = f4.getParentFile().listFiles(); //获得文件夹内的文件列表,想要做复制就继续重复上面的复制文件}} catch (Exception e) {// TODO Auto-generated catch blocke.printStackTrace();}友情提示:写代码还是要看api,伸手党难成大器

『贰』 java 在指定的文件夹下创建一个新的文件夹

可以先切换到指定的文件夹路径下,之后直接通过mkdir方法进行文件夹创建。举例:String path = "d:/oldfilepath";//定义指定文件路径String newPath = path+"/newpath";//指定新路径File file = new File(newPath );//定义一个文件流file.mkdir();//创建文件夹备注:如果不确定原有文件夹是否存在的情况下,可以通过”mkdirs“创建多层路径。java 在指定的文件夹下创建一个新的文件夹

『叁』 JAVA创建文件时的路径问题

程序中的分隔符是分平台的,你只要记住在java里面windows的文件是用/,如果是unix什么的又不同了,API里面有说明。

『肆』 java高手们来 根据路径创建文件夹

你好,你想问的是这样吗:File f = new File("d:"+File.separator+"\WebRoot\WEB-INF\classes\com\cvicse\catering\archv\action") ;// 实例化File类的对象版f.mkdir() ;// 创建文权件夹

『伍』 java中怎么写文件路径

你是用myeclipse软件写JAVA的吗,你可以在myeclipse的打开窗口中依次创建项目,包,类什么的编写程序,之后你打开JAVA工作间,找到你的程序,那么地址栏里就是你的JAVA文件路径了,又或者你用dreamever软件,先制作好你的网页,连接好超链接什么的之后,打开代码,就可以看见了

『陆』 java如何创建文件

public void createFile(){//path表示你所创建文专件的路径String path = "d:/tr/rt";File f = new File(path);if(!f.exists()){ f.mkdirs();} // fileName表示你创建的文件名;为txt类型属;String fileName="test.txt";File file = new File(f,fileName);if(!file.exists()){try {file.createNewFile();} catch (IOException e) {// TODO Auto-generated catch blocke.printStackTrace();}}}//现在你可以在d:/tr/rt 目录下找到test.txt文件

『柒』 java如何在当前文件下创建目录

可以直接创建文件时用相对路径,如:File dir = new File("aaa/bbb");dir.mkdirs();这样创建的目录就是在当前目录下。 如果要指定绝对路径可以获取当前class文件的路径:test.class.getResource("").getPath();

『捌』 怎么打开java创建文件夹目录

1、File类的createNewFile根据抽象路径创建一个新的空文件,当抽象路径制定的文件存在时,创建失败 2、File类的mkdir方法根据抽象路径创建目录 3、File类的mkdirs方法根据抽象路径创建目录,包括创建必需但不存在的父目录 4、File类的createTempFile方法创建临时文件,可以制定临时文件的文件名前缀、后缀及文件所在的目录,如果不指定目录,则存放在系统的临时文件夹下。 5、除mkdirs方法外,以上方法在创建文件和目录时,必须保证目标文件不存在,而且父目录存在,否则会创建失败示例代码如下:package book.io;import java.io.File;import java.io.IOException;public class CreateFileUtil { public static boolean createFile(String destFileName) { File file = new File(destFileName); if(file.exists()) { System.out.println("创建单个文件" + destFileName + "失败,目标文件已存在!"); return false; } if (destFileName.endsWith(File.separator)) { System.out.println("创建单个文件" + destFileName + "失败,目标文件不能为目录!"); return false; } //判断目标文件所在的目录是否存在 if(!file.getParentFile().exists()) { //如果目标文件所在的目录不存在,则创建父目录 System.out.println("目标文件所在目录不存在,准备创建它!"); if(!file.getParentFile().mkdirs()) { System.out.println("创建目标文件所在目录失败!"); return false; } } //创建目标文件 try { if (file.createNewFile()) { System.out.println("创建单个文件" + destFileName + "成功!"); return true; } else { System.out.println("创建单个文件" + destFileName + "失败!"); return false; } } catch (IOException e) { e.printStackTrace(); System.out.println("创建单个文件" + destFileName + "失败!" + e.getMessage()); return false; } }public static boolean createDir(String destDirName) { File dir = new File(destDirName); if (dir.exists()) { System.out.println("创建目录" + destDirName + "失败,目标目录已经存在"); return false; } if (!destDirName.endsWith(File.separator)) { destDirName = destDirName + File.separator; } //创建目录 if (dir.mkdirs()) { System.out.println("创建目录" + destDirName + "成功!"); return true; } else { System.out.println("创建目录" + destDirName + "失败!"); return false; } }public static String createTempFile(String prefix, String suffix, String dirName) { File tempFile = null; if (dirName == null) { try{ //在默认文件夹下创建临时文件 tempFile = File.createTempFile(prefix, suffix); //返回临时文件的路径 return tempFile.getCanonicalPath(); } catch (IOException e) { e.printStackTrace(); System.out.println("创建临时文件失败!" + e.getMessage()); return null; } } else { File dir = new File(dirName); //如果临时文件所在目录不存在,首先创建 if (!dir.exists()) { if (!CreateFileUtil.createDir(dirName)) { System.out.println("创建临时文件失败,不能创建临时文件所在的目录!"); return null; } } try { //在指定目录下创建临时文件 tempFile = File.createTempFile(prefix, suffix, dir); return tempFile.getCanonicalPath(); } catch (IOException e) { e.printStackTrace(); System.out.println("创建临时文件失败!" + e.getMessage()); return null; } } } public static void main(String[] args) { //创建目录 String dirName = "D:/work/temp/temp0/temp1"; CreateFileUtil.createDir(dirName); //创建文件 String fileName = dirName + "/temp2/tempFile.txt"; CreateFileUtil.createFile(fileName); //创建临时文件 String prefix = "temp"; String suffix = ".txt"; for (int i = 0; i < 10; i++) { System.out.println("创建了临时文件:" + CreateFileUtil.createTempFile(prefix, suffix, dirName)); } //在默认目录下创建临时文件 for (int i = 0; i < 10; i++) { System.out.println("在默认目录下创建了临时文件:" + CreateFileUtil.createTempFile(prefix, suffix, null)); } }}输出结果:创建目录D:/work/temp/temp0/temp1成功!目标文件所在目录不存在,准备创建它!创建单个文件D:/work/temp/temp0/temp1/temp2/tempFile.txt成功!创建了临时文件:D:work emp emp0 emp1 emp5171.txt创建了临时文件:D:work emp emp0 emp1 emp5172.txt创建了临时文件:D:work emp emp0 emp1 emp5173.txt创建了临时文件:D:work emp emp0 emp1 emp5174.txt创建了临时文件:D:work emp emp0 emp1 emp5175.txt创建了临时文件:D:work emp emp0 emp1 emp5176.txt创建了临时文件:D:work emp emp0 emp1 emp5177.txt创建了临时文件:D:work emp emp0 emp1 emp5178.txt创建了临时文件:D:work emp emp0 emp1 emp5179.txt创建了临时文件:D:work emp emp0 emp1 emp5180.txt在默认目录下创建了临时文件:C:Documents and SettingsAdministratorLocal SettingsTemp emp5181.txt在默认目录下创建了临时文件:C:Documents and SettingsAdministratorLocal SettingsTemp emp5182.txt在默认目录下创建了临时文件:C:Documents and SettingsAdministratorLocal SettingsTemp emp5183.txt在默认目录下创建了临时文件:C:Documents and SettingsAdministratorLocal SettingsTemp emp5184.txt在默认目录下创建了临时文件:C:Documents and SettingsAdministratorLocal SettingsTemp emp5185.txt在默认目录下创建了临时文件:C:Documents and SettingsAdministratorLocal SettingsTemp emp5186.txt在默认目录下创建了临时文件:C:Documents and SettingsAdministratorLocal SettingsTemp emp5187.txt在默认目录下创建了临时文件:C:Documents and SettingsAdministratorLocal SettingsTemp emp5188.txt在默认目录下创建了临时文件:C:Documents and SettingsAdministratorLocal SettingsTemp emp5189.txt在默认目录下创建了临时文件:C:Documents and SettingsAdministratorLocal SettingsTemp emp5190.txt

『玖』 java中创建文件

一般都可以通过”new file“的形式来完成文件创建。代码如下:import java.io.*;public class filename { public static void main(String[] arg) throws IOException { //以下操作可能出现异常,必须放入try块中 try{ File path=new File("F:\\filepath"); //先设置文件路径File dir=new File(path,"filename.txt"); //设置在文件路径下创建新文件的名称if(!dir.exists()) //判断文件是否已经存在dir.createNewFile(); //如果不存在的话就创建一个文件}catch(Exception e){ //如果存在就会报错,System.out.print("创建失败");//输出创建失败信息,也就证明当前要创建的文件已经存在。} } }

未经允许不得转载:山九号 » java创建文件的路径|java如何创建文件

赞 (0)