摘要: round(columnName, precision) 四舍五入trunc(columnName, precision) 强制截断 阅读全文
posted @ 2013-10-06 10:11 李小加 阅读(372) 评论(0) 推荐(0) 编辑
摘要: StackedColumn3DLineDY.swf 效果展示:一、页面代码View Code 二、XML数据文件内容 ... 阅读全文
posted @ 2013-10-02 17:31 李小加 阅读(504) 评论(0) 推荐(0) 编辑
摘要: var cc = [];cc.push('');cc.push('');return cc.join(''); 阅读全文
posted @ 2013-10-02 10:35 李小加 阅读(413) 评论(0) 推荐(0) 编辑
摘要: 1 2 3 4 5 文件大小判断 6 7 8 限制: K 9 10 11 12 13 43 44 阅读全文
posted @ 2013-09-29 10:16 李小加 阅读(512) 评论(0) 推荐(0) 编辑
摘要: HttpServletResponse response = ServletActionContext.getResponse(); response.setCharacterEncoding("utf-8"); response.setContentType("text/xml;charset=utf-8"); response.setHeader("Cache-Control", "no-cache"); //确保在取得PrintWriter对象之前先设置response的编码;顺序搞错将无法解决中文乱码问题! 阅读全文
posted @ 2013-09-27 11:17 李小加 阅读(909) 评论(0) 推荐(0) 编辑
摘要: 1.向文件末尾添加内容BufferedWriter out = null; try { out = new BufferedWriter(new FileWriter(”filename”, true)); out.write(”aString”); } catch (IOException e) { // error processing code } finally { if (out != null) { out.close(); } } View Code 2.得到当前方法的名字Strin... 阅读全文
posted @ 2013-09-24 10:06 李小加 阅读(160) 评论(0) 推荐(0) 编辑
摘要: left join(左联接) 返回包括左表中的所有记录和右表中联结字段相等的记录right join(右联接) 返回包括右表中的所有记录和左表中联结字段相等的记录inner join(等值连接) 只返回两个表中联结字段相等的行 阅读全文
posted @ 2013-09-18 14:39 李小加 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 1. 在Java中输出一个数组(Print an array in Java)int[] intArray = { 1, 2, 3, 4, 5 };String intArrayString = Arrays.toString(intArray); // print directly will print reference valueSystem.out.println(intArray);// [I@7150bd4d System.out.println(intArrayString);// [1, 2, 3, 4, 5]View Code 2. 从数组中创建数组列表(Create a.. 阅读全文
posted @ 2013-09-17 11:04 李小加 阅读(349) 评论(0) 推荐(0) 编辑
摘要: package util;import java.awt.image.RenderedImage;import java.awt.image.renderable.ParameterBlock;import java.io.File;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.IOException;import java.io.OutputStream;import java.util.logging.Logger;import javax.media.jai.JAI; 阅读全文
posted @ 2013-09-16 17:09 李小加 阅读(5319) 评论(0) 推荐(0) 编辑
摘要: selct newName=case when条件 then '否'else '是' end from tableName 阅读全文
posted @ 2013-09-02 17:56 李小加 阅读(596) 评论(0) 推荐(0) 编辑