JAVA学习笔记---东软
2022/3/19 12:58:50
本文主要是介绍JAVA学习笔记---东软,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
package daily; import java.io.*; import java.util.Calendar; public class test3_file { public static void main(String[] args) throws IOException { //获取系统时间 Calendar today = Calendar.getInstance(); int year = today.get(Calendar.YEAR); int month =today.get(Calendar.MONTH)+1;//注意 int day = today.get(Calendar.DAY_OF_MONTH); String y = ""+year; String m = ""+month; String d = Integer.toString(day); // 创建一个目录 String filePath ="D:\\"+y+"\\"+m+"\\"+d+""; File f =new File(filePath); if (!f.exists()){ f.mkdirs(); System.out.println("创建完成!"); } else{ System.out.println("该目录已经存在!"); } // 向文件中存入数据 // 自动创建文件 File file = new File(filePath,"test.txt"); Writer writer = new FileWriter(file);//此处需要抛出异常 writer.write("你好!世界!!"); writer.close(); // 从文件中读取数据 File file2 = new File(filePath,"test.txt"); Reader reader = new FileReader(file2); char [] c = new char[1024]; int len = reader.read(c); String str = ""; while(len!=-1){ str=new String(c,0,len); len = reader.read(c); } System.out.println(str); } }
这篇关于JAVA学习笔记---东软的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-27本地多文件上传的简单教程
- 2024-11-27低代码开发:初学者的简单教程
- 2024-11-27如何轻松掌握拖动排序功能
- 2024-11-27JWT入门教程:从零开始理解与实现
- 2024-11-27安能物流 All in TiDB 背后的故事与成果
- 2024-11-27低代码开发入门教程:轻松上手指南
- 2024-11-27如何轻松入门低代码应用开发
- 2024-11-27ESLint开发入门教程:从零开始使用ESLint
- 2024-11-27Npm 发布和配置入门指南
- 2024-11-27低代码应用课程:新手入门指南