摘要: 获取日期的下一天 java代码 public ResultData getNextDay(String date) throws ParseException { //格式化 SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd"); if (S 阅读全文
posted @ 2021-04-29 15:02 Cherish° 阅读(1997) 评论(0) 推荐(0) 编辑
摘要: 在dataGrip中直接 使用 set serverout on 后 调用存储过程也是无法再控制台中看到输出。 解决方案:在控制台点一下这个图标 然后就能看到输出了。 创建存储过程的语句: create procedure SP_emp as --声明变量 V_sal number(20,2); b 阅读全文
posted @ 2021-04-27 11:28 Cherish° 阅读(559) 评论(0) 推荐(0) 编辑
摘要: 问题描述: ​ 准备写一个demo来测试 查询一个时间段的记录数,传入一个时间以后不能正确的查到记录数,最离谱的是用 插件打印出执行的SQL语句放到数据库中是可以跑出数据来的,在代码中跑不出数据。 ​ 解决方法: 在通过实体类传输时间之后使用SimpleDateFormat 进行格式化一下时间,在封 阅读全文
posted @ 2021-04-23 15:11 Cherish° 阅读(2645) 评论(0) 推荐(0) 编辑
摘要: INSERT INTO employees VALUES ( 206 , 'William' , 'Gietz' , 'WGIETZ' , '515.123.8181' , TO_DATE('07-06-1994', 'dd-MON-yyyy') , 'AC_ACCOUNT' , 8300 , NU 阅读全文
posted @ 2021-04-21 17:29 Cherish° 阅读(714) 评论(0) 推荐(0) 编辑
摘要: public class FileRead { public static void main(String[] args) throws IOException { //创建路径名称 String pathname="D:\\aaa.txt"; //创建file对象 File file=new F 阅读全文
posted @ 2021-04-20 17:18 Cherish° 阅读(371) 评论(0) 推荐(0) 编辑
摘要: import java.util.*; public class Collections { public static void main(String[] args) { List<String> list=new ArrayList<>(); list.add("1111"); list.ad 阅读全文
posted @ 2021-04-20 09:19 Cherish° 阅读(103) 评论(0) 推荐(0) 编辑
摘要: public class Poker { public static void main(String[] args) { /* * 1: 准备牌操作 */ //1.1 创建牌盒 将来存储牌面的 ArrayList<String> pokerBox = new ArrayList<String>() 阅读全文
posted @ 2021-04-19 17:12 Cherish° 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 生成10个10到100之间的随机数 public void test01() { List<Integer> list = new ArrayList<>(); for (int i = 0; i < 10; i++) { int number = (int) (Math.random() * 90 阅读全文
posted @ 2021-04-19 14:36 Cherish° 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 到官网下载tomcat安装包,注意和你的jdk版本相匹配 如果没有安装jdk的同学移步 https://www.cnblogs.com/cherish-code/p/14674896.html 下载 tomcat 登录阿里云服务器 进入文件夹中 cd /usr/local 然后上传安装包到文件中 建 阅读全文
posted @ 2021-04-18 22:55 Cherish° 阅读(203) 评论(0) 推荐(0) 编辑
摘要: linux安装java1.8 如果你是第一次安装请先卸载 centos自带的 openjdk 官网下载jdk1.8 网址 https://www.oracle.com/java/technologies/javase/javase-jdk8-downloads.html 现在下载jdk需要有账号和密 阅读全文
posted @ 2021-04-18 22:20 Cherish° 阅读(140) 评论(0) 推荐(0) 编辑