- 浏览: 707017 次
- 性别:
- 来自: 陕西
最新评论
-
liubey:
miwucc 写道博主你好。我刚用msm。sticky的配置下 ...
Tomcat session共享 —MSM -
xxtianxiaxing:
没有特殊的配置,应该从你的代码端排查下,我曾经遇到过,在sti ...
Tomcat session共享 —MSM -
unsoundboy:
这种方式在第一次的时候可行,但是再次请求session就变化了 ...
Tomcat session共享 —MSM -
zhoumax:
你好,看了你的文章 ,想请教一个问题:
我在opensuse下 ...
keepalived 安装错误 -
xxtianxiaxing:
...
JQuery -- this 和 $(this) 的区别
文章列表
<?xml version="1.0" encoding="UTF-8"?>
<templates>
<template
autoinsert="false"
context="constructorcomment_context"
deleted="false"
description="Comment for created constructors"
enab ...
/**
* 此方法描述的是:取指定长度字符串的值;
* @param String str,int byteSize;
* @return String;
*/
public String getAllStringSize(String str, int byteSize) {
int len = 0;
char c;
String words = "";
if(str == null || "null".equals(str)) {
...
- 2009-08-01 11:50
- 浏览 2718
- 评论(0)
Openfire 是由Jive Software 主导开发的一套功能非常强大的开源im 服务器(前身是wildfire),它基于XMPP 协议,完全用java实现,是一款非常优秀的服务器端软件。
最近参与了一个开源项目thinksns,负责im部分,于是准备研究一下open ...
- 2009-07-29 13:23
- 浏览 1476
- 评论(0)
import java.io.File;
import java.io.FileWriter;
import java.util.Iterator;
import java.util.List;
import org.dom4j.Attribute;
import org.dom4j.Document;
import org.dom4j.DocumentHelper;
import org.dom4j.Element;
import org.dom4j.io.OutputFormat;
import org.dom4j.io.SAXReader;
import org ...
- 2009-07-29 09:20
- 浏览 855
- 评论(0)
1. dom4j-1.5.jar 依赖 jaxen-1.1-beta-4.jar
否则执行时可能抛java.lang.NoClassDefFoundError: org/jaxen/JaxenException异常
- 2009-07-29 08:59
- 浏览 1210
- 评论(0)
其次DOM4J的解释
一.Document对象相关
1.读取XML文件,获得document对象.
Java代码
SAXReader reader = new SAXReader();
Document document = reader.read(new File("input.xml"));
SAXReader reader = new SAXReader();
Document document = reader.read(new File("input.xml")); 2.解析X ...
- 2009-07-27 16:10
- 浏览 2016
- 评论(0)
//------------------字符串的长度验证
function bytelength(szString) {
return szString.replace(new RegExp("[^\x00-\xff]","g")," ").length;
}
//------------------操作span的隐藏与显示
document.getElementById("isActiveShow"+id).style.display = "none";
d ...
- 2009-07-22 16:57
- 浏览 915
- 评论(0)
JDBCExceptionReporter:77 SQL Error: 0, SQLState: null
JDBCExceptionReporter:78 Cannot create PoolableConnectionFactory (Too many connections)
SettingsFactory:117 Could not obtain connection metadata
org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (Too many connecti ...
- 2009-07-20 10:07
- 浏览 6116
- 评论(0)
2009-01-09
Eclipse中设置在创建新类时自动生成注释
Eclipse中设置在创建新类时自动生成注释
windows-->preference
Java-->Code Style-->Code Templates
code-->new Java files
点edit,编辑它
${filecomment}
${package_declaration}
/**
* @author 作者 E-mail:
* @version 创建时间:${date} ${time}
* 类说明
*/
${typeco ...
- 2009-04-03 14:57
- 浏览 1443
- 评论(0)
//通用自动加载方法
if (document.all){ //ie
window.attachEvent('onload',readCookie);
} else{ //ff
window.addEventListener('load',readCookie,false);
}
//单击相应操作时的onclick方法
function setCookie(name, value){//name为key,key要唯一,value就是相应的值
value = encodeURI(value);//解决中文乱码
var date = new ...
- 2009-04-02 09:06
- 浏览 1271
- 评论(0)
原来的javascript函数如下:
//cookie操作函数
function Get_Cookie(name) {
var start = document.cookie.indexOf(name+"=");
var len = start+name.length+1;
if ((!start) && (name != document.cookie.substring(0,name.length))) return null;
if (start == ...
- 2009-04-02 09:00
- 浏览 4130
- 评论(0)
package com.here.web.common.wx;
import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStreamReader;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.List;
import com.her ...
- 2009-03-24 11:13
- 浏览 1577
- 评论(0)
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; char ...
- 2009-03-24 08:31
- 浏览 1079
- 评论(0)
上周研究了一下Acegi安全框架在SSH中的应用,一开始就因为Acegi配置文件的加载方式困惑了几天,到底是加在以插件的形式在struts配置文件struts-config.xml里声明还是在部署描述符web.xml里声明?最后得出答案,在web.xml里声明。正如Acegi宣称的那样,它将低耦合地与你已有应用系统做无缝结合。下面就它的初级应用做个介绍。
其中,需要用到的jar包有: acegi-security-1.0.3.jar acegi-security-cas-1.0.3.jar commons-codec-1.3.jar 1. 首先是部 ...
- 2009-03-19 10:34
- 浏览 2121
- 评论(0)