会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
xinworld
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
2021年3月10日
1.数据库的分类
摘要: 1、关系型数据库的分类:(SQL) MySQL, Oracle, SQL Server, DB2,SQLlite 通过表与表之间,行与列之间的关系进行数据的存储, 例如:学生表,考勤表 非关系型数据库:(NoSQL) not only sql Redis,MongoDB 非关系型数据库,对象存储,通
阅读全文
posted @ 2021-03-10 17:40 __sunshine
阅读(350)
评论(0)
推荐(0)
2021年3月6日
Tomcat控制台乱码
摘要: 这篇博客 https://www.cnblogs.com/zblwyj/p/12053177.html
阅读全文
posted @ 2021-03-06 10:34 __sunshine
阅读(32)
评论(0)
推荐(0)
2021年1月30日
数字和字符转换
摘要: //将 数字转成字符串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)
2021年1月29日
创建文件
摘要: 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)
上一页
1
2
3
4
5
6
公告