摘要: 标签打印机:TSC TTP-244 Pro 官方资料下载地址:https://www.chinatsc.cn/zh-CN/downloads 打印机驱动: 官方给出的Java参考案例: 官方文档预览下载: https://fs.chinatsc.cn/system/files/tspl_tspl2_ 阅读全文
posted @ 2023-03-22 15:49 孙浩月 阅读(1002) 评论(0) 推荐(0) 编辑
摘要: Oracle的JDK下载地址 https://www.oracle.com/java/technologies/downloads/archive/ 阅读全文
posted @ 2022-05-29 17:34 孙浩月 阅读(39) 评论(0) 推荐(0) 编辑
摘要: float:单精度浮点数,占4字节,32位。 double:双精度浮点数,占8字节,64位。 注意: 1、十进制数形式:浮点数必须包含一个小数点,例如:3.13、5.16;不包含小数点会被当成int类型处理,例如:3则会被当成int类型。 2、科学计数形式:例如:5.12e2、5.12E2,只有浮点 阅读全文
posted @ 2022-04-06 13:27 孙浩月 阅读(353) 评论(0) 推荐(0) 编辑
摘要: 1、新建TXT文件,写入代码,class名与文件名一致: public class HelloWorld { public static void main(String[] args) { System.out.println("Hello World"); } } 2、后缀改为java,Hell 阅读全文
posted @ 2022-04-05 10:41 孙浩月 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 1、在SpringBoot项目的启动类上加上 @EnableScheduling 2、在需要定时执行的方法上加上 @Scheduled(cron = "0 0 14 * * ?") 阅读全文
posted @ 2021-06-24 14:18 孙浩月 阅读(572) 评论(0) 推荐(0) 编辑
摘要: 转载借鉴于:https://blog.csdn.net/LJ_0514/article/details/79565197?utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromBaidu%7Edef 阅读全文
posted @ 2021-04-02 13:35 孙浩月 阅读(521) 评论(0) 推荐(0) 编辑
摘要: 转载借鉴于:https://blog.csdn.net/sunxiaoju/article/details/109102682 1、在使用Idea连接Oracle12c数据库时,报错: java.sql.SQLException: ORA-28040: 没有匹配的验证协议 方法 : 在Oracle1 阅读全文
posted @ 2021-04-02 13:19 孙浩月 阅读(2021) 评论(0) 推荐(0) 编辑
摘要: 1、以管理员方式运行cmd 2、切换到JDK15的安装目录 3、输入:bin\jlink.exe --module-path jmods --add-modules java.desktop --output jre 回车 4、这时JDK15安装目录下就出现了jre 阅读全文
posted @ 2021-03-26 11:05 孙浩月 阅读(887) 评论(0) 推荐(0) 编辑
摘要: 1、快捷键序列化: 例:private static final long serialVersionUID = 1L File -> Settings -> Editor -> Inspections -> 搜索:Serialization issues -> 选择:Serializable cl 阅读全文
posted @ 2021-03-04 15:05 孙浩月 阅读(1450) 评论(0) 推荐(0) 编辑
摘要: 1、Hibernate里使用自定义查询SQL public List<Qcra> sQcra02(String qcra01) { String sql = "SELECT * FROM qcra WHERE qcra01 = ?"; SQLQuery sqlQuery = getSession() 阅读全文
posted @ 2021-03-04 14:29 孙浩月 阅读(793) 评论(0) 推荐(0) 编辑