`
文章列表
在MVC2.0使用Lodop为WEB打印提出完美解决方案     通过好友CallHot介绍Lodopweb打印控件。由于是国人开发的,故这两天认真了研究下,打算在未来的项目中使用。现将学习成果与园友分享。如果存在不足的地方,希望您指出。 具体的实现步骤如下:      一、准备工作         1.MVC2.0 + jQuery1.4.1 开发环境。         2.Lodop web 打印控件,官方地址:http://mtsoftware.v053.gokao.net/download.html  (注:国人开发,免费软件)。         3.StringTemplat ...
package utils; import java.io.OutputStream; import org.apache.poi.hssf.usermodel.HSSFCell; import org.apache.poi.hssf.usermodel.HSSFCellStyle; import org.apache.poi.hssf.usermodel.HSSFDataFormat; import org.apache.poi.hssf.usermodel.HSSFFont; import org.apache.poi.hssf.usermodel.HSSFRichTextString; i ...
有两种流行Spring定时器配置:Java的Timer类和OpenSymphony的Quartz。 1.Java Timer定时 首先继承java.util.TimerTask类实现run方法 [java] view plaincopyprint? import java.util.TimerTask;   public class EmailReportTask extends TimerTask{        @Override         public void run() {    }       }     timerTask属性告诉ScheduledTi ...
quartz定时任务时间设置描述(2011-03-03 16:23:50)转载▼标签: quartz时间it 分类: 凌乱小记  这些星号由左到右按顺序代表 :     *    *     *     *    *     *   *                                格式: [秒] [分] [小时] [日] [月] [周] [年] 序号 说明   是否必填  允许填写的值 允许的通配符 1  秒  是  0-59    , - * / 2  分  是  0-59    , - * / 3 小时  是  0-23   , - * / 4 ...
_text = _text.replace(new RegExp(_text.substring(0,2),"g"),""); $("#radios_0 input:checked").each(function(){ _text += $(this).parent().siblings(".rst").text(); }); _text = _text.replace(new RegExp(_text.substring(0,2),"g"),""); ...
1,去掉空格  1  var txt=$.trim($("txt1").val()); 2,转为数字  1 txtNum=Number($.trim(txt)) + 1;  2 var thisEle = $("#para").css("font-size"); //获取字体大小  3 var textFontSize = parseFloat(thisEle , 10); 3,四舍五入为整数/随机数  1 //Math.ceil()  2 //ceil() 方法可对一个数进行上舍入。  3 //参数必须是 ...
设置eclipse自动生成的author等注释 分类: Eclipse 2009-04-22 09:35 4428人阅读 评论(6) 收藏 举报 eclipseinsertjavadate 转自:http://hi.baidu.com/qianjian21/blog/item/2fecbd2f687ba03e1e308969.html 每新建一个类上面都会有一行注释: /** * @author 马海宝 E-mail:rigger21@126.com * @version 创建时间:2007-8-30 下午04:58:52 * 类说明 */ 感觉这个应该很好,多个人一起开发的时候能够看见谁是谁的 ...
<!-- <div> <h2>1,Demo-Default colors with inline style</h2> <div id="icolor" class="icolorC"></div> <h2>2,Demo-Custom colors with inline style,no input box,4 columns</h2> <div id="icolor1" class="icolorC" ...
1、拼接字段判断用户表里用户名与邮箱字段里@前面的是否一样 1、select * from employee where concat(user_name,'@com.cn') <> email; 2、select * from employee where concat(user_name,'@com.cn') != email; 3、select * from employee where user_name <> substring(email,1,length(SUBSTRING_INDEX(email,"@",1))); ; 2、MyS ...
Oracle 将一个表中的字段值更新到另一个表的字段中: --使用where exists,则当数据存在时才会更新   update  sysrole role set system_name = (select system_name from temp_sysrole temp where role.rolename=temp.rolename)   where exists   (select system_name from temp_sysrole temp where role.rolename=temp.rolename)
Global site tag (gtag.js) - Google Analytics