- 博客(15)
- 收藏
- 关注
原创 computer memory
Computer memory space size expression with unit below.B,K, M, G, T, P, E, Z or Y.These letters represent the byte, kilo, mega, giga, tera, peta, exa, zeta, and yotta values from the multiple of 1024...
2020-02-28 17:38:16
423
原创 js对字符串的判断测试
js判断字符串。var str = null;var test = !str; //truevar str = " ";var test = !str; //truevar str = “you”;var test = !str; //false
2019-07-29 13:59:58
274
原创 git上传远程仓库
git 在idea上面提交touch README.md 创建readme.md 文件并进行编辑。touch .gitignore 把需要忽略的文件都编辑到此文件中git init 初始化Git repositorygit status 查看git状态git add 添加到本地仓库git commit -am ‘你的上传说明写入此处’ 把项目提交到本地仓库git remote...
2019-07-13 07:36:15
218
转载 前端很好的一个网站,快去学习吧!!!
https://www.html5tricks.com/[前段高手](https://www.html5tricks.com/)
2019-07-12 14:16:41
203
转载 maven 不能加载jar包的解决办法
1. I had this problem all of a sudden (after an update + Windows Update). I tried a lot of things, and in the end, set Settings > Build, Execution, Deployment > Build Tools > Maven > Impor...
2019-07-04 08:30:38
1453
原创 分页插件mapper到server的转换
//xx表示路径layui.use('table', function () { var versionTable = layui.table; versionTable.render({ elem: '#versionTable' //, toolbar: '#tableTopbar' , cellMinW...
2019-07-03 08:35:25
234
原创 mybatis一对多查询
多查询<resultMap id="appVersionContentMap" type="com.XX.AppVersionContentBean"> <result column="version_code" property="versionCode"/> <result column="version_content" pro...
2019-07-02 17:57:12
133
原创 数组最大和子系列
package utils;public class LenggestSubsum { public static void main(String[] args) { long before = System.currentTimeMillis(); int[] a = {-2,1,-3,4,-1,2,1,-5,4}; //暴力发 ...
2019-06-23 10:05:14
260
原创 java 利用poi 实现excel合并单元格后出现边框有的消失的解决方法
/*** 合并单元格后出现边框有的消失的解决方法* @param borderStyle* @param region* @param sheet*/public static void setBorderStyle(BorderStyle borderStyle, CellRangeAddress region, XSSFSheet sheet){RegionUtil.setBor...
2019-03-29 14:48:09
6315
5
原创 在centos7上安装mysql
https://www.digitalocean.com/community/tutorials/how-to-install-mysql-on-centos-7https://dev.mysql.com/downloads/repo/yum/https://tecadmin.net/install-mysql-5-7-centos-rhel/wget https://dev.mysq...
2018-09-14 18:28:56
258
原创 验证码生成
@RequestMapping(“/identifyCode”) public void identifyCode(HttpServletResponse response,HttpSession httpSession){ BufferedImage bufferedImage = new BufferedImage(150,40,BufferedImage.TYPE...
2018-08-15 10:01:56
233
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人