会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
青蛙跳跳
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
5
6
7
8
9
10
11
12
13
···
15
下一页
2019年3月31日
mysql win7 64位 官网下载步骤
摘要: https://jingyan.baidu.com/article/6181c3e0d27a57152ef15306.html
阅读全文
posted @ 2019-03-31 20:49 青蛙跳跳
阅读(125)
评论(0)
推荐(0)
2019年2月9日
rownum 的使用
摘要: 在Oracle数据库中的sql中 使用 rownum做数据的截取, mysql 中使用的是limit 截取 limit n,m. n:从n+1条开始,m: 截取的长度。 注意: rownum 一般用在where 语句后,rownum 使用截取数据时,只能是 “<”, 如 rownum <11, 取得
阅读全文
posted @ 2019-02-09 13:37 青蛙跳跳
阅读(219)
评论(0)
推荐(0)
2019年2月7日
Maven工程打包
摘要: Maven-java 工程 打包 结果是jar 包 打包步骤: 项目右键 》 run as 》 maven install Maven-web工程 打包 结果是war 包 打包步骤: 项目右键 》 run as 》 maven install 注意: 项目打包后的名字是pom.xml 中的 fina
阅读全文
posted @ 2019-02-07 13:44 青蛙跳跳
阅读(128)
评论(0)
推荐(0)
Maven 学习
摘要: 1:Maven 使用需要 2个jar 包 repository库, Maven依赖的jar中的 .setting文件 2:Maven 的核心文件 pom.xml. 3: pom.xml 中 主要 标签包括: groupId :一般是公司域名倒着写。 artifactId:name: 一般写一样,项目
阅读全文
posted @ 2019-02-07 12:49 青蛙跳跳
阅读(109)
评论(0)
推荐(0)
2018年8月5日
java int 转 String 类型
摘要: int order_status=0; //方法一: String orderStatus=Integer.toString(order_status); //方法二: String valueOf = String.valueOf(order_status); System.out.println
阅读全文
posted @ 2018-08-05 22:11 青蛙跳跳
阅读(120)
评论(0)
推荐(0)
将字符串放到字符串数组中
摘要: String stationCapacity = "01,12,21,31"; String [] strArr=stationCapacity .split(","); for (int i = 0; i < strArr.length; i++) { String str = strArr[i]
阅读全文
posted @ 2018-08-05 15:34 青蛙跳跳
阅读(7960)
评论(0)
推荐(0)
visual code 插件的安装步骤
摘要: https://jingyan.baidu.com/article/90808022029213fd91c80f15.html
阅读全文
posted @ 2018-08-05 12:00 青蛙跳跳
阅读(99)
评论(0)
推荐(0)
两个Stirng[]拼接成一个数组
摘要: import org.apache.commons.lang.ArrayUtils; String[] str1 = {"Hello","world","java"}; String[] str2 = {"Veriable","syntax","interator"}; String [] str3
阅读全文
posted @ 2018-08-05 08:54 青蛙跳跳
阅读(126)
评论(0)
推荐(0)
2018年7月29日
Visual code 常用快捷键
摘要: 打开 命令台:ctrl + ~ (tab 上面的键) ctrl+P 最近打开的文件。 移动:Alt+ 上/下 箭头 复制:Shirt+ Alt+ 上/下 箭头 ctrl+E 查找code 中的文件 代码格式化:Shift+Alt+F,
阅读全文
posted @ 2018-07-29 20:50 青蛙跳跳
阅读(112)
评论(0)
推荐(0)
mysql 中的分页limit
摘要: limit是mysql的语法select * from table limit m,n其中m是指记录开始的index,从0开始,表示第一条记录n是指从第m+1条开始,取n条。select * from tablename limit 2,4即取出第3条至第6条,4条记录 limit 5,5. 取得6
阅读全文
posted @ 2018-07-29 10:23 青蛙跳跳
阅读(169)
评论(0)
推荐(0)
上一页
1
···
5
6
7
8
9
10
11
12
13
···
15
下一页
公告