Fight With Me!!!

导航

上一页 1 ··· 75 76 77 78 79 80 81 82 83 ··· 106 下一页

2015年9月11日 #

java正则表达式应用--验证字符串是否为数字(转载)

摘要: 首先说一下java正则表达式的重点概念: 第一、相关类:Pattern、Matcher 第二、典型的调用顺序是 Pattern p = Pattern.compile("a*b"); Matcher m = p.matcher("aaaaab"); boolean b = m.matches(); ... 阅读全文

posted @ 2015-09-11 11:29 nickTimer 阅读(1011) 评论(0) 推荐(0) 编辑

2015年9月10日 #

如何把Excel另存为XML格式文件(快速转换)

摘要: 这时,我们尝试另存为另一种文件类型:XML电子表格2003(*.xml) 阅读全文

posted @ 2015-09-10 18:25 nickTimer 阅读(718) 评论(0) 推荐(0) 编辑

2015年9月9日 #

JXL读取Excel日期时间不准确

摘要: XL读取Excel日期时间多出了8个小时。 Cell c = rs.getCell(j, i); if (c.getType() == CellType.DATE) {//手动填写模板文件时为 date 类型,其他情况有可能不是date类型 DateCell dc = (D... 阅读全文

posted @ 2015-09-09 18:56 nickTimer 阅读(626) 评论(0) 推荐(0) 编辑

2015年9月8日 #

freemarker 如何获得list的索引值

摘要: ${toplists_index}相当方便 阅读全文

posted @ 2015-09-08 15:48 nickTimer 阅读(2948) 评论(0) 推荐(0) 编辑

POI使用cell.getCellStyle()设置指定单元格颜色,但是其它没有指定的单元格也会变色

摘要: HSSFCell cell = row.createCell((short)i); cell.getCellStyle().setAlignment(HSSFCellStyle.ALIGN_RIGHT);....你可能发现创建后的excel文件所有的列都变成右对齐了... 翻了翻代码,还... 阅读全文

posted @ 2015-09-08 14:59 nickTimer 阅读(3436) 评论(0) 推荐(0) 编辑

2015年9月7日 #

JXL获取excel批注

摘要: /** * Jxl.jar(2.6.12) * @author lmiky * @date 2011-11-26 */ public class JxlTest { /** * 测试获取批注 * @author lmiky * @date 2011-11-26 * @param filePath * @throws IOExce... 阅读全文

posted @ 2015-09-07 18:30 nickTimer 阅读(393) 评论(0) 推荐(0) 编辑

2015年9月6日 #

string evaluated instead to freemarker.template.SimpleScalar

摘要: [2015-09-06 09:07:32.879] ERROR [6B68DD09CE6FECFE20936CA3C6D560AD:http-bio-8087-exec-8] o.a.s.v.freemarker.FreemarkerResult - Error processing Freemar... 阅读全文

posted @ 2015-09-06 09:15 nickTimer 阅读(1899) 评论(0) 推荐(0) 编辑

2015年9月1日 #

js标点符号全局匹配

摘要: var modelCode = node.modelCode.replace(/\./g, '\_');注意后面的 "\" 阅读全文

posted @ 2015-09-01 14:21 nickTimer 阅读(1402) 评论(0) 推荐(0) 编辑

2015年8月19日 #

PLSQL Developer调试 存储过程和触发器

摘要: 1. 打开PL/SQL Developer如果 在机器上安装了PL/SQL Developer的话,打开PL/SQL Developer界面输入 用户名,密码和host名字,这个跟在程序中web.config中配置的完全相同,点击确定 找到 需要调试的存储过程所在的包(Package bodies)... 阅读全文

posted @ 2015-08-19 13:32 nickTimer 阅读(5492) 评论(0) 推荐(1) 编辑

oracle 根据汉字返回拼音函数

摘要: 参见戴明明的博客,oracle 根据汉字返回拼音函数,由于他的博客里没有提供完整的代码,研究了一个多小时,才弄出来;上来贴代码吧。。--------------Type DefinitionCREATE OR REPLACE TYPE spell_code AS OBJECT( spell varc... 阅读全文

posted @ 2015-08-19 13:21 nickTimer 阅读(577) 评论(0) 推荐(0) 编辑

上一页 1 ··· 75 76 77 78 79 80 81 82 83 ··· 106 下一页