- 博客(14)
- 收藏
- 关注
原创 Java中的位运算
移位运算有符号左移:<<左移1位相当于乘2,x << n等价于x * (2 ^ n)。int i = 4;i = i << 2; //= 4 * (2 ^ 2) = 16应用:乘法对于h = 2 ^ n - 1来说,其中n为整数,有:h * a = (2 ^ n - 1) * a = (a * 2 ^ n) - a = (a << n) - a有符号右移:>>右移1位相当于除2,x >> n等价于x / (2 ^ n)
2022-04-08 15:38:18 660
原创 Linux安装jdk
1.查看系统[root@iZuf690ifcqs5vmppc0qwfZ /]# uname -a Linux iZuf690ifcqs5vmppc0qwfZ 3.10.0-862.14.4.el7.x86_64 #1 SMP Wed Sep 26 15:12:11 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux [root@iZuf690ifcqs5vmppc0qwfZ /]# getconf LONG_BIT 64确认是64位系统2.下载下载地址 找到6
2021-09-30 15:32:20 146
原创 java处理SQL查询的换行符失效
解决方法<dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.12.0</version></dependency>// 1.导入依赖// 2.使用方法首先jvm用到是 ascii码\n 是char(10) \r是char(13),可以
2021-09-02 17:18:04 782
原创 @Table报红 import javax.persistence.Table;
加上下面的依赖 <dependency> <groupId>jakarta.persistence</groupId> <artifactId>jakarta.persistence-api</artifactId> <version>1.0</version> </depen
2021-09-01 15:05:27 1790
原创 MySQL直接导出Excel
SELECT * INTO OUTFILE ‘D:/test.xls’ FROM tableNmae;如果报 The MySQL server is running with the --secure-file-priv option so it cannot execute this statement,看上一篇
2021-04-12 14:22:52 165
原创 The MySQL server is running with the --secure-file-priv option so it cannot execute this statement
MySQL 8在尝试从MySQL导出Excel时,MySQL报The MySQL server is running with the --secure-file-priv option so it cannot execute this statement错误解决方法:在MySQL安装路径,找到my.ini (并不是C盘下,就在你的安装路径)比如我的:打开my.ini在mysqslid 里面 加上 secure_file_priv=’ ',注意,一定要在mysqlid里面导出成功..
2021-04-12 14:11:23 231
原创 集合按对象的属性排序
List<TruckCraneOrderParamDto> list = new ArrayList<>(); //升序 list.stream().sorted(Comparator.comparing(TruckCraneOrderParamDto::getTruckCraneTypeAliasId)).collect(Collectors.toList()); //降序 list.stream()....
2020-11-12 12:00:07 99
原创 springboot项目打jar包部署到服务器IDEA
1.注意pom文件<packaging>jar</packaging>2.确保src下的test下的代码都能成功运行,不然打包会报错3.先clean再install包就打好了,在target下面4.把jar包拉倒服务器文件夹//先停止项目fuser -k -n tcp 8070//在启动项目nohup java -jar tjb2.jar >./test_月日.out &//查看日志tail -f test_1111.out ...
2020-11-11 10:35:02 214
转载 mybatis批量插入并返回主键(xml和注解两种方式)(转载)
转载mybatis批量插入在mysql数据库中支持批量插入,所以只要配置useGeneratedKeys和keyProperty就可以批量插入并返回主键了。比如有个表camera,里面有cameraNo,chanIndex,cameraName这三个字段,其中cameraNo是自增主键。下面是批量插入的Dao层接口:void batchInsertCameras(@Param("list") List<Camera> cameras);xml形式:<insert id="
2020-11-03 13:40:52 181
原创 SVN
一 语言包安装没用查看当前版本号(1)找到 SVN 安装目录,把里面的Languages文件夹删掉(2)安装语言包,一个下载比较慢但是语言包较全的网站二 切换账号清除账号记录,再次访问SVN就会重新输入账号密码了...
2020-07-06 13:09:16 157
原创 通过修改注册表,设置系统音量快捷键
通过修改注册表,设置系统音量快捷键复制到文本文档修改.reg后缀,双击运行Windows Registry Editor Version 5.00[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout]"Scancode Map"=hex:00,00,00,00,00,00,00,00,04,00,00,00,20,E0,3b,00,2E,E0,43,00,30,E0,44,00,00,00,00,00重启电脑后
2020-06-22 13:54:47 3566 4
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人