`
一纸红颜岂值倾尽天下
  • 浏览: 29283 次
  • 性别: Icon_minigender_1
社区版块
存档分类
最新评论
文章列表
//点击label事件将窗体最小化到磁盘 label_1.addMouseListener(new MouseAdapter() { public void mouseUp(MouseEvent event) { shell.setMinimized(true); } });  
窗体程序 package com.pcm.chni.recipereport.frame; import java.util.ArrayList; public class TableViewerDel { protected Shell shell; private String findLinkKey = "FindLink"; private List listcuCustomers = new ArrayList(); private ArrayList<Hyperlink> delList = new ArrayL ...

div 滚动条

    博客分类:
  • html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charse ...
       配置tomact 信息 将Tomact配置成80端口                  如果配置80端口 启用Tomact时端口被占用 结束被占用的端口 如果任务管理器里结束不了 查查这个端口属于哪个服务 手动关闭服务          待Tomact开启后 在启用其他服务      <?xml version='1.0' encoding='utf-8'?>           <Server port="8005" shutdown="SHUTDOWN">           < ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; chars ...

常见文件操作

    博客分类:
  • java
package com.swt.common.util; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.BufferedWriter; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.FileWriter; impor ...
highcharts 图形报表工具 最近公司开发需要用到报表  在网上查询了api 研究研究 更多请看:http://www.hcharts.cn/api/index.php#yAxis.title.text   <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/19 ...
 javascript 实现计算两头的时差 <script type="text/javascript"> /*计算两个日期相差的天数 *@date1:日期类型的字符串(yyyy-mm-dd) *@date2:日期类相的字符串 (yyyy-mm-dd) *@return:返回日期天数差 */ function getDays(date1,date2){ var date1Str = date1.split("-");//将日期字符串分隔为数组,数组元素分别为年、月、日 //根据年、月、日的值创建Date对象 ...
  jQuery 中几种Ajax的应用 <script type="text/javascript"> //jquery中的几种ajax请求 function ajaxRequest(){ /* $.ajax();最底层的方法 load()、$.post()、$.ajax();第二层 $.getJSON(); $.getScript();//第三层 /* /*******************************loa ...
  使用jquery实现自定义动画方法    使用animate 实现动画  css样式 //定义图片属性 img{position:relative;}//定位     代码 $(function () { // $("img").hover(function () { // // $(this).animate({left:"+=2px"},200).animate({left:"-=2px"},200); // // ...
C3P0是一个开源的JDBC连接池,它实现了数据源和JNDI绑定,支持JDBC3规范和JDBC2的标准扩展。目前使用它的开源项目有Hibernate,Spring等。    这里不详谈 只做实现 去往官网下载c3p0 jar包:http://www.126disk.com/fileview_1619526.html   1、jdbc.properties 配置文件 #JDBC连接驱动 jdbc.driver=com.mysql.jdbc.Driver #服务器连接地址 jdbc.url=jdbc:mysql://127.0.0.1:3306/data?autoReconnect ...
第一种使用, 基于线程池设计的 ScheduledExecutor。其设计思想是,每一个被调度的任务都会由线程池中一个线程去执行,因此任务是并发执行的,相互之间不会受到干扰。需 要注意的是,只有当任务的执行时间到来时,ScheduedExec ...

Myeclipse10 破解

    博客分类:
  • IDE
   myeclipse10 破解 激活,java编写,适用于装有java环境的各种操作系统,win,linux,maxos; 下载pc6-MyEclipse10cr这个破解文件, 有需要的可以找我要;1.运行run.bat文件, 等待一会,出现swing窗体;2. 输入任意用户名3. 点击Systemid... 按钮,自动生成本机器的systemid。4. 点菜单Tools->RebuildKey5. 点击active按钮.会在显示区域生成LICENSE_KEYACTIVATION_CODEACTIVATION_KEY这时候不要打开myeclipse的激活页面输入。6.打开菜单To ...
springmvc上传下载功能 参照网上代码写了一个简单的例子   1、需要导入jar包:ant.jar、commons-fileupload.jar、connom-io.jar。当然spring jar包不可缺少的哦  我这里用的是spring+springmvc+hibernate  可以到官网上直接下载springmvcjar即可   2、springmvc.xml文件配置 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.spr ...
pinyin4j的使用很方便,一般转换只需要使用PinyinHelper类的静态工具方法即可:  String[] pinyin = PinyinHelper.toHanyuPinyinStringArray(‘赵’);  //该类还有其他的拼音转换形式,但是基本上用不到,就不介绍了  返回的数组即是该字符的拼音,如上例就是pinyin[0]=zhao,后面的数字代表声调,声调为5表示轻读,无声调。之所谓返回数组,是因为被判定的汉字有可能有多个读音。如果输入的参数不是汉字,则返回null。       需要下载pinyin4j-2.5.0.jar 包 package com.a ...
Global site tag (gtag.js) - Google Analytics