`
xxtianxiaxing
  • 浏览: 707017 次
  • 性别: Icon_minigender_1
  • 来自: 陕西
社区版块
存档分类
最新评论
文章列表
<?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)) { ...
Openfire 是由Jive Software 主导开发的一套功能非常强大的开源im 服务器(前身是wildfire),它基于XMPP 协议,完全用java实现,是一款非常优秀的服务器端软件。 最近参与了一个开源项目thinksns,负责im部分,于是准备研究一下open ...
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 ...
1. dom4j-1.5.jar 依赖 jaxen-1.1-beta-4.jar 否则执行时可能抛java.lang.NoClassDefFoundError: org/jaxen/JaxenException异常
其次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 ...
好看button
//------------------字符串的长度验证 function bytelength(szString) { return szString.replace(new RegExp("[^\x00-\xff]","g")," ").length; } //------------------操作span的隐藏与显示 document.getElementById("isActiveShow"+id).style.display = "none"; d ...
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-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 ...

cookie 历史记录

    博客分类:
  • web
//通用自动加载方法 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 ...
原来的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 == ...

静态页面生成

    博客分类:
  • web
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 ...
<!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 ...
上周研究了一下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. 首先是部 ...
Global site tag (gtag.js) - Google Analytics