java中创建文件

java中创建文件,第1张

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 block

e.printStackTrace()

}

}

}

//现在你可以在d:/tr/rt 目录下找到test.txt文件

File writeName = new File(你要存的地方)// 相对路径,绝乎如果没有则要建立一个新

//的.txt文件

writeName.createNewFile()//颂羡 创建新文件,有同名的文件并樱悉的话直接覆盖

FileWriter writer = new FileWriter(writeName)

BufferedWriter out = new BufferedWriter(writer)

out.write(你要写入的信息);


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12264417.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-24
下一篇 2023-05-24

发表评论

登录后才能评论

评论列表(0条)

保存