`
xxtianxiaxing
  • 浏览: 707280 次
  • 性别: Icon_minigender_1
  • 来自: 陕西
社区版块
存档分类
最新评论
文章列表
引用 YAHOO工具库 1.1. YAHOO工具库提供的方法  namespace 用于创建一个全局的命名空间,使用YUI时,首先会自动创建widget,util,example三个命名空间,使用时也可以自定义命名空间。类似于在程序中建了了一个static变量。  lang javascript扩展的语言工具,用于判别对象的类型。  lang.extend 用于从一个对象上扩展出另一个对象,模拟了类的继承的方式,但不同的是,在创建子对象时,父对象的构造函数不会自动调用。父对象的引用存放在了子对象的supper ...
<!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"> <script> function testArguments(){ var n = "本次共传递了 " + argument ...
//容器中获得 ApplicationContext ac = WebApplicationContextUtils.getWebApplicationContext(servletContext); //文件存放绝对路径 ApplicationContext ac = new FileSystemXmlApplicationContext(files); //工程的classpath; ApplicationContext ac = new FileSystemXmlApplicationContext(files);
// //验证码图片中可以出现的字符集,可根据需要修改 // private char mapTable[]={ // 'a','b','c','d','e','h', // 'A','B','C','D','E','F', // 'j','k','m','n','p','q', // 'J','K','M','N','P','Q', // 'r','s','t','u','v','w', // 'R','S','T','U','V','W', // 'x','y','z','X','Y','Z', // '2','3','4','5 ...
var pathServer = ""; var timezone; var now = new Date(); //-------------------------------------------------------------------shangmian var xmlHttp; function createXMLHttpRequest(){ if(window.ActiveXObject){ xmlHttp = new ActiveXObject( ...
import javax.servlet.http.Cookie; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class CookieUtils { /** * Returns the specified cookie, or <tt>null</tt> if the cookie * does not exist. Note: because of the w ...
import javax.mail.internet.InternetAddress; import javax.mail.internet.AddressException; import java.io.UnsupportedEncodingException; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; import java.text.BreakIterator; import java.util.*; import java.util.concur ...
Acegi ACL使用说明 本文假设你对Acegi其他部分已经比较熟悉。Acegi 的ACL控制是建立在对相应业务方法拦截的基础上的。这里以Acegi自带的contacts例子来说明。 先看看总的配置: <bean id="contactManagerSecurity" class="org.acegisecurity.intercept.method.aopalliance.MethodSecurityInterceptor"> <property name="authenticationMana ...
<!-- acegi的通道过滤器 --> <bean id="channelProcessingFilter" class="org.springframework.security.securechannel.ChannelProcessingFilter"> <property name="channelDecisionManager" ref="channelDecisionManager"/> <property name="filter ...
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www. ...
uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> 上面的 uri 根据你的实际情况定。 ${fn:substring("你要截取的字符串"),beginIndex,endIndex} <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions&quo ...
1.复制src\java下所有东西; 2.openfire\src\i18n, 点OK按钮将这个文件夹加入到Classpath选项卡中; 3.同样的方式把openfire\src\resources目录下的jar文件夹也加到Classpath选项卡中。 4.openfire的起始类为org.jivesoftware.openfire.starter.ServerStarter.java,但是直接运行此类却有问题,因为此类是针对Openfire安装包而设计的,此类的功能是将所用到的JAR文件解压并将class文件加载到虚拟机中,而我们要用的却是源代码中我们自己编译好的class文件。所以 ...
import static java.util.concurrent.TimeUnit.*; class BeeperControl { private final ScheduledExecutorService scheduler = Executors.newScheduledThreadPool(1); public void beepForAnHour() { final Runnable beeper = new Runnable() { public void run() { Sy ...
package test; import java.util.HashSet; import java.util.Set; import java.util.concurrent.Callable; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.Future; /** * 此类描述的是: * * @author 作者 E-mail: wangxiongdx@163.com * ...
class NetworkService { private final ServerSocket serverSocket; private final ExecutorService pool; public NetworkService(int port, int poolSize) throws IOException { serverSocket = new ServerSocket(port); pool = Executors.newFixedThreadPool(poolSize); } ...
Global site tag (gtag.js) - Google Analytics