自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Aaronhsp的专栏

不积蹞步,无以至千里;不积小流,无以成江海。

  • 博客(3)
  • 资源 (11)
  • 问答 (1)
  • 收藏
  • 关注

原创 Jmeter并发测试(抽奖系统)

Jmeter 是一款使用Java开发的,开源免费的,测试工具, 主要用来做功能测试和性能测试(压力测试/负载测试). 而且用Jmeter 来测试 Restful API, 非常好用。

2017-12-19 15:40:55 3726

原创 Bootstrap Table

为了能更好的提高开发效率和减少开发时间,基于Bootstrap的轻量级表格插件Bootstrap Table新鲜出炉啦。只需简单的配置,就可以拥有强大的支持固定表头、单/复选、排序、分页、搜索及自定义表头等功能。       http://wenzhixin.net.cn/p/bootstrap-table/docs/index.html       最近项目中有用到,特分享给大家。一起感

2015-01-09 16:31:25 1387

转载 js验证input输入框(字母,数字,符号,中文)

[javascript]代码库]转载地址:http://yuncode.net/code/c_5039bb4a3fccf28js验证输入框内容 只能输入英文"text"

2014-12-17 10:38:17 804

office文件及图片文件转换成PDF,同时添加水印

/** * 文件格式转换成pdf, * 使用Jacob将office格式文件转换成pdf格式,在使用代码前需将jacob-1.43-M2-x86/x64.dll拷贝到%JAVA_HOME%下的 bin目录下 * 建议本机按照较高版本的office软件,同时最好按另存为pdf的插件 SaveAsPDFandXPS.exe,否则在调试代码时可能会出现无法调用SaveAs方法的报错 * * 使用itextpdf将图片文件转换成pdf格式 *(针对PPT格式文件转换PDF时,pdf文件路径格式需要使用"D:\\task\\xxx.pdf") */ 包含jar包:iText5.0.6、iTextAsian1.5.2、itextpdf-5.5.9。

2018-04-19

通过Gradle下载Spring-framework4.0编译后的源码

1、window--show view -- git -- Git Repositories 2、url输入https://github.com/spring-projects/spring-framework.git 3、选择自己需要的版本下载 4、下载文件中自带了Gradle ,直接运行import-into-eclipse.bat。 5、编译后导入源码到Excipse中 最后:分享的源码式编译后的可直接导入Eclipse中。

2018-01-20

H+ 后台主题UI框架(毕设福利)

H+是一个完全响应式,基于Bootstrap3.3.6最新版本开发的扁平化主题,她采用了主流的左右两栏式布局,使用了Html5+CSS3等现代技术,她提供了诸多的强大的可以重新组合的UI组件,并集成了最新的jQuery版本(v2.1.4),当然,也集成了很多功能强大,用途广泛的jQuery插件,她可以用于所有的Web应用程序,如网站管理后台,网站会员中心,CMS,CRM,OA等等,当然,您也可以对她进行深度定制,以做出更强系统。 当前版本:v4.1.0

2017-12-07

The best jQuery plugin to validate form fields. Designed to use with Bootstrap 3

Web开发的我们,表单验证是再常见不过的需求了。友好的错误提示能增加用户体验。The best jQuery plugin to validate form fields. Designed to use with Bootstrap 3

2017-09-20

treeGrid、树形表格

treegrid插件 当前选中的行: var config = { id: "tg1", width: "800", renderTo: "div1", headerAlign: "left", headerHeight: "30", dataAlign: "left", indentation: "20", folderOpenIcon: "images/folderOpen.gif", folderCloseIcon: "images/folderClose.gif", defaultLeafIcon: "images/defaultLeaf.gif", hoverRowBackground: "false", folderColumnIndex: "1", itemClick: "itemClickEvent", columns:[ {headerText: "", headerAlign: "center", dataAlign: "center", width: "20", handler: "customCheckBox"}, {headerText: "名称", dataField: "name", headerAlign: "center", handler: "customOrgName"}, {headerText: "拼音码", dataField: "code", headerAlign: "center", dataAlign: "center", width: "100"}, {headerText: "负责人", dataField: "assignee", headerAlign: "center", dataAlign: "center", width: "100"}, {headerText: "查看", headerAlign: "center", dataAlign: "center", width: "50", handler: "customLook"} ], data:[ {name: "城区分公司", code: "CQ", assignee: "", children:[ {name: "城区卡品分销中心"}, {name: "先锋服务厅", children:[ {name: "chlid1"}, {name: "chlid2"}, {name: "chlid3", children: [ {name: "chlid3-1"}, {name: "chlid3-2"}, {name: "chlid3-3"}, {name: "chlid3-4"} ]} ]}, {name: "半环服务厅"} ]}, {name: "清新分公司", code: "QX", assignee: "", children:[]}, {name: "英德分公司", code: "YD", assignee: "", children:[]}, {name: "佛冈分公司", code: "FG", assignee: "", children:[]} ] }; /* 单击数据行后触发该事件 id:行的id index:行的索引。 data:json格式的行数据对象。 */ function itemClickEvent(id, index, data){ window.location.href="ads"; } /* 通过指定的方法来自定义栏数据 */ function customCheckBox(row, col){ return ""; } function customOrgName(row, col){ var name = row[col.dataField] || ""; return name; } function customLook(row, col){ return "查看"; } //创建一个组件对象 var treeGrid = new TreeGrid(config); treeGrid.show(); /* 展开、关闭所有节点。 isOpen=Y表示展开,isOpen=N表示关闭 */ function expandAll(isOpen){ treeGrid.expandAll(isOpen); } /* 取得当前选中的行,方法返回TreeGridItem对象 */ function selectedItem(){ var treeGridItem = treeGrid.getSelectedItem(); if(treeGridItem!=null){ //获取数据行属性值 //alert(treeGridItem.id + ", " + treeGridItem.index + ", " + treeGridItem.data.name); //获取父数据行 var parent = treeGridItem.getParent(); if(parent!=null){ //jQuery("#currentRow").val(parent.data.name); } //获取子数据行集 var children = treeGridItem.getChildren(); if(children!=null && children.length>0){ jQuery("#currentRow").val(children[0].data.name); } } }

2015-01-09

cocos2d-android.jar

详细说明:Cocos2d-x jar文件 放入assets文件中,即可引入工程-Cocos2d-x jar for android

2014-08-14

Android实现2048游戏 源码大放送

Android实现2048游戏 源码大放送

2014-08-13

Android学习资料

android学习资料某500强公司内部学习资料.zip

2014-08-13

Java设计模式(疯狂Java联盟版).chm

Java设计模式(疯狂Java联盟版).chm

2013-09-10

网页制作完全手册

网页制作完全手册通过下列链接访问参考资料,可帮助你创建引人注目的 Web 页面。

2013-09-03

计算机组成原理实验课件

计算机组成原理实验课件

2013-01-07

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除