会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
平心先生 手稿
博客园
首页
新随笔
联系
订阅
管理
2023年8月1日
DecimalFormat格式化数据.00问题
摘要: 废话不多说,直接上代码 `public void decimalFormat(){ DecimalFormat df = new DecimalFormat("#.00"); String format = df.format(Double.valueOf("9.00")); System.out.
阅读全文
posted @ 2023-08-01 13:35 平心先生
阅读(193)
评论(0)
推荐(0)
编辑
2022年12月12日
AES加密心路历程
摘要: AES加密 | 加密算法 | AES | | | | | 加密模式 | CBC | | 填充 | pkcs5padding | | 数据块 | 128位 | | 密码 | 当前用户的AppKey取前32位 | | 偏移量 | 当前用户的AppKey取前16位 | | 输出 | base64 | |
阅读全文
posted @ 2022-12-12 18:12 平心先生
阅读(223)
评论(0)
推荐(0)
编辑
2021年10月15日
鼠标右键转圈
摘要: 转发:http://www.xitongcheng.com/jiaocheng/win10_article_39873.html 创建.bat文件,复制如下内容 regsvr32 /u /s igfxpph.dll reg delete HKEY_CLASSES_ROOT\Directory\Bac
阅读全文
posted @ 2021-10-15 15:41 平心先生
阅读(109)
评论(0)
推荐(0)
编辑
2021年1月14日
flex的titlewindow如何自适应浏览器的宽度和高度
摘要: 转发:https://blog.csdn.net/xunxun118/article/details/84005941 其中比较重要的是,触发事件createComplete
阅读全文
posted @ 2021-01-14 11:11 平心先生
阅读(73)
评论(0)
推荐(0)
编辑
2020年7月25日
JQuery的事件中使用this
摘要: 先看下面代码: name sex age Henry male 30 Emily female 30 上面是含有change事件的表格,下面是change事件的实现 function onChange(id){ $("input[name='tdCheckBox']").removeAttr('ch
阅读全文
posted @ 2020-07-25 22:27 平心先生
阅读(417)
评论(0)
推荐(0)
编辑
2020年6月19日
jQuery控制 input 不可编辑
摘要: 直接上代码 function disabledinput(){ if($("#input1").attr("disabled") == "disabled"){ $("#input1").removeAttr("disabled"); }else{ $("#input1").attr("disabl
阅读全文
posted @ 2020-06-19 17:57 平心先生
阅读(1504)
评论(0)
推荐(0)
编辑
jquery 操作 input显示或者隐藏
摘要: 废话不多说,直接上代码 <script type="text/javascript" > function showinput(){ var display =$('#input1').css('display'); console.log("display:"+display); if(displ
阅读全文
posted @ 2020-06-19 16:35 平心先生
阅读(2799)
评论(0)
推荐(0)
编辑
2020年6月4日
Word 创建模板
摘要: 就一件事另存的时候选“宏模板”类型保存
阅读全文
posted @ 2020-06-04 10:19 平心先生
阅读(150)
评论(0)
推荐(0)
编辑
2019年10月27日
HTML转PDF
摘要: 下载: 使用工具wkhtmltopdf ,下载地址:https://wkhtmltopdf.org/downloads.html 下载的时候注意,下载安装包,免安装的好像不太好用,可能我还没弄明白。 安装: 安装之后需要配置环境变量 path里面:C:\Program Files\wkhtmltop
阅读全文
posted @ 2019-10-27 21:25 平心先生
阅读(203)
评论(0)
推荐(0)
编辑
2019年3月11日
SQL server 自增主键重新从1开始
摘要: 原文链接:http://blog.csdn.net/zhengjia0826/article/details/43149953 dbcc checkident('sys_common_switch',reseed,0)
阅读全文
posted @ 2019-03-11 18:20 平心先生
阅读(3047)
评论(0)
推荐(0)
编辑
下一页
公告