摘要: 1、关系型数据库的分类:(SQL) MySQL, Oracle, SQL Server, DB2,SQLlite 通过表与表之间,行与列之间的关系进行数据的存储, 例如:学生表,考勤表 非关系型数据库:(NoSQL) not only sql Redis,MongoDB 非关系型数据库,对象存储,通 阅读全文
posted @ 2021-03-10 17:40 __sunshine 阅读(350) 评论(0) 推荐(0)
摘要: 这篇博客 https://www.cnblogs.com/zblwyj/p/12053177.html 阅读全文
posted @ 2021-03-06 10:34 __sunshine 阅读(32) 评论(0) 推荐(0)
摘要: //将 数字转成字符串Integer number = new Integer(88888);String s = number.toString();System.out.println(s);//将 int 类型的数字转换成字符串int i = 88888;String s1 = String. 阅读全文
posted @ 2021-01-30 16:05 __sunshine 阅读(186) 评论(0) 推荐(0)
摘要: public static void main(String[] args) throws IOException { File file = new File("D:\\io\\myTest.txt"); //文件地址 if(file.exists()){ //文件已经存在 System.out. 阅读全文
posted @ 2021-01-29 16:39 __sunshine 阅读(211) 评论(0) 推荐(0)