上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页
摘要: https://jingyan.baidu.com/article/6181c3e0d27a57152ef15306.html 阅读全文
posted @ 2019-03-31 20:49 青蛙跳跳 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 在Oracle数据库中的sql中 使用 rownum做数据的截取, mysql 中使用的是limit 截取 limit n,m. n:从n+1条开始,m: 截取的长度。 注意: rownum 一般用在where 语句后,rownum 使用截取数据时,只能是 “<”, 如 rownum <11, 取得 阅读全文
posted @ 2019-02-09 13:37 青蛙跳跳 阅读(215) 评论(0) 推荐(0) 编辑
摘要: Maven-java 工程 打包 结果是jar 包 打包步骤: 项目右键 》 run as 》 maven install Maven-web工程 打包 结果是war 包 打包步骤: 项目右键 》 run as 》 maven install 注意: 项目打包后的名字是pom.xml 中的 fina 阅读全文
posted @ 2019-02-07 13:44 青蛙跳跳 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 1:Maven 使用需要 2个jar 包 repository库, Maven依赖的jar中的 .setting文件 2:Maven 的核心文件 pom.xml. 3: pom.xml 中 主要 标签包括: groupId :一般是公司域名倒着写。 artifactId:name: 一般写一样,项目 阅读全文
posted @ 2019-02-07 12:49 青蛙跳跳 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 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 青蛙跳跳 阅读(115) 评论(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 青蛙跳跳 阅读(7924) 评论(0) 推荐(0) 编辑
摘要: https://jingyan.baidu.com/article/90808022029213fd91c80f15.html 阅读全文
posted @ 2018-08-05 12:00 青蛙跳跳 阅读(93) 评论(0) 推荐(0) 编辑
摘要: import org.apache.commons.lang.ArrayUtils; String[] str1 = {"Hello","world","java"}; String[] str2 = {"Veriable","syntax","interator"}; String [] str3 阅读全文
posted @ 2018-08-05 08:54 青蛙跳跳 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 打开 命令台:ctrl + ~ (tab 上面的键) ctrl+P 最近打开的文件。 移动:Alt+ 上/下 箭头 复制:Shirt+ Alt+ 上/下 箭头 ctrl+E 查找code 中的文件 代码格式化:Shift+Alt+F, 阅读全文
posted @ 2018-07-29 20:50 青蛙跳跳 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 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 青蛙跳跳 阅读(166) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页