`
猪↘專屬|华
  • 浏览: 164012 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论
文章列表
package com.ufun; import java.awt.image.BufferedImage;import java.io.ByteArrayInputStream;import java.io.ByteArrayOutputStream;import java.io.FileOutputStream;import java.io.IOException;import java.io.InputStream;import java.io.OutputStream;import java.sql.DriverManager;import java.sql.SQLException; ...
    搞了一周多的新框架搭建了.现在总算可以拿出来看看了.这个是自己搭建的一个新的比较满意的框架.这个框架主要由spring mvc+ibatis的集成.里面有很多自己在项目中总结的成果.其实在一开始搭建这个框架的时候,自己就在考虑 ...
记录日志. LoggerFilter.java package com.easyweb.web.character; import java.io.*;import javax.servlet.*;import javax.servlet.http.*; /** * 全局日志记录过滤器(暂且不用,现在使用的是spring aop记录日志) * @author Administrator * */public class LoggerFilter implements Filter{  private FilterConfig filterConfig = null;     publi ...
过滤项目中的非法字符,并且用其他的特殊符号过滤: WordFilter.java package com.easyweb.web.character; import java.io.IOException;import java.io.InputStream;import java.util.Collection;import java.util.Iterator;import java.util.Properties;import java.util.Random; import javax.servlet.Filter;import javax.servlet.FilterChain ...
统一项目的编码,字符过滤器: SetCharacterEncodingFilter.java /* * Copyright 2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * *     http:/ ...
package propertiesTest; import java.util.ResourceBundle; /** * leo  朱湘鄂 * @author 朱湘鄂 * @version 1.0 * @说明 此类是读取properties属性文件的java类 * 提供的是单例模式来读取的。避免浪费资源 * 读取properties配置文件的方法有很多。这里采用 * ResourceBundle */public class ReadPropertiesUtil { private static ReadPropertiesUtil readPro = null;             ...
mysql里面不可以返回游标,很让人蛋疼,没oracle好,而且,mysql没有什么好的调试工具,也比较纠结. 下面是我写的一个mysql存储过程,里面使用到了游标,临时表,最终返回的是结果接,希望对大家有帮助: DELIMITER $$ USE `realwar`$$ DROP PROCEDURE IF EXISTS `queryRemainsPoints`$$ CREATE DEFINER=`root`@`%` PROCEDURE `queryRemainsPoints`(    /*in startSize int,    in pageSize int,startSize,分页 ...
1 下载memcached-1.2.1-win32.zip  并且解压. 2 新建web project项目 名字自己取,然后导入必要的包,alisoft-xplatform-asf-cache-2.5.1.jar,commons-logging-1.0.3.jar,log4j-1.2.13.jar 3 新建类 user.java package bean; import java.io.Serializable; public class User implements Serializable{     /**     * 序列号     */    private static ...

mysql触发器

/*修改老表的sql语句:*/ ALTER TABLE `realwar`.`commanders`     ADD COLUMN `new_commanders_id` INT(11) NULL COMMENT '与新表关联的指挥官' AFTER `wild_type`;   /*添加一个触发器,将新表中的数据同步到老表*/ DELIMITER $$ /*在向新表中插入数据的时候,同时把老表commanders表添加一条数据*/ DROP TRIGGER /*!50032 IF EXISTS */ `insert_commanders`$$   CREATE     ...

javafx2.0的播放器

package com.meyacom.javafx; import javafx.application.Application; import javafx.event.ActionEvent; import javafx.event.EventHandler; import javafx.geometry.Insets; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.layout.BorderPane; ...

javafx的练习五

package com.meyacom.first; import static java.lang.Math.random; import javafx.animation.KeyFrame; import javafx.animation.KeyValue; import javafx.animation.Timeline; import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Node; import javafx.scene.Scene; import ...

javafx的练习四

package com.meyacom.first; import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.effect.BlendMode; import javafx.scene.paint.Color; import javafx.scene.paint.CycleMethod; import javafx.scene.paint.LinearGradient; import javafx.scene.p ...

javafx的练习三

package com.meyacom.first; import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.paint.Color; import javafx.scene.paint.CycleMethod; import javafx.scene.paint.LinearGradient; import javafx.scene.paint.Stop; import javafx.scene.shape.C ...
package com.meyacom.first; import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.effect.BoxBlur; import javafx.scene.paint.Color; import javafx.scene.shape.Circle; import javafx.scene.shape.StrokeType; import javafx.stage.Stage; publ ...
package com.meyacom.first; import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.paint.Color; import javafx.scene.shape.Circle; import javafx.scene.shape.StrokeType; import javafx.stage.Stage; public class FirstDemo extends Applicatio ...
Global site tag (gtag.js) - Google Analytics