- 浏览: 80644 次
- 性别:
- 来自: 武汉
最新评论
-
accpxudajian:
...
svn同步错误Entry already exists -
heven0818:
请问书本转让不?我想买这本书,找不到
agile java 学习笔记 第五章 接口与多态 第一小节 接口 -
dengli19881102:
_window.findByType("text ...
EXT UI的一个小例子 -
leejah:
getParameter
AJAX中文乱码的几种后台的解决方案 -
vincent_joan:
Struts 2 在当前命名空间下寻找Action,如果没有找 ...
Struts2的命名空间与后缀设置
文章列表
FCK(默认)一直以来,用户都可以共享所上传的图片,多多少少都会有点问题,而且在很多情况下也不能满足需求,但其实FCK也想到了这点,他自己本生就提供了接口,可以每个用户指定文件夹,让用户上传的图片,不 ...
参考转载于:http://fish119.iteye.com/blog/680851
1.从Oracle官方下载“Instant Client Package”的软件,较好的实现了Oracle客户端绿化的解决方案。
下载地址为:http://www.oracle.com/technology/software/tech/oci/instantclient/htdocs/winsoft.html
可下载的程序包有:
下载程序包:
instantclient-basic-win32-11.1.0.x.0.zip (目前有版本: 11.1.0.6.0 和 11.1.0.7.0 ...
<html>
<head>
<link href="${cssPath}/facebox.css" rel="stylesheet" type="text/css" />
<script language="javascript" type="text/javascript"
src="${jsPath}/jquery-1.3.2.js"></script>
<script language= ...
<html>
<bead>
<link href="${cssPath}/uploadify.css" rel="stylesheet" type="text/css" />
<script language="javascript" type="text/javascript"
src="${jsPath}/jquery-1.3.2.js"></script>
<script type=" ...
转发参考:http://hi.baidu.com/yljf184/blog/item/98df82df71fc731f62279876.html
•onpropertychange,只要当前对象属性发生改变,都会触发事件,因此用途更为广泛,只可惜它是IE only;
•oninput是onpropertychange的非IE浏览器版本,支持firefox和opera等浏览器,但有一点不同,它绑定于对象时,并非该对象所有属性改变都能触发事件,据我所知,它只在对象value值发生改变时奏效。
<textarea name="smsMessage.message" ...
public class SMSTimer extends TimerTask {
@Override
public void run() {
// 在这里写定时运行的代码(线程体)
}
}
SMSTimer smsTimer = new SMSTimer();
Timer timer = new Timer(true);
timer.schedule(smsTimer, new Date(), 60000);
Timer timer = new Timer(true);
这里回了个参数,主要是标明线程为守护线程,守护线程的优先级别是最低的(比如ja ...
本文参考转发于: http://www.zhuoda.org/elite/34479.html
public static String base64DecoderTool(final String str) throws SystemException{
BASE64Decoder decoder = new BASE64Decoder();
String returnStr = null;
byte[] b;
try {
b = decoder.decodeBuffer(str);
returnStr = new String(b , ...
public class XMLParse {
// 定义一个Properties 用来存放标签值
private Properties props;
public Properties getProps() {
return this.props;
}
public void parse(String filename) throws Exception {
// 将解析器对象化
try {
ConfigParser handler = new ConfigParser();
// 获取SAX工厂对象
SAXPars ...
JavaTM 2 Platform Standard Ed. 6 地址
http://jdk.accptech.com/
http://www.xasxt.com/java/api/
jQuery 1.3 API 地址
http://jquery-api-zh-cn.googlecode.com/svn/trunk/index.html
转至:http://www.cnblogs.com/mabaishui/archive/2010/09/15/1827052.html
在action的方法的最后,一般情况下都使用return mapping.findForward("xxxxx");
如果想跳转到另外一个action的某个页面,可以这样:
ActionForward actionForward = new ActionForward();
actionForward.setPath("/customer/creditApprManage.do?method=searchCr ...
public String getFilterString(final String filePath) {
FileInputStream fis = null;
BufferedReader br = null;
StringBuffer smsFilter = new StringBuffer(); // 定义一个String类型的变量,用来每次读取一行
InputStreamReader isr = null;
try {
if (filePath == null || filePath.length() == 0){
fi ...
参考:http://www.cnblogs.com/ljhong/archive/2008/09/22/1296127.html
<input onkeyup="this.value=this.value.replace(/\D/g,'')" onafterpaste="this.value=this.value.replace(/\D/g,'')">
转至http://blog.minidx.com/2008/01/07/355.html
函数:split()
功能:使用一个指定的分隔符把一个字符串分割存储到数组
例子:
str=”jpg|bmp|gif|ico|png”;
arr=theString.split(”|”);
//arr是一个包含字符值”jpg”、”bmp”、”gif”、”ico”和”png”的数组
函数:John()
功能:使用您选择的分隔符将一个数组合并为一个字符串
例子:
var delimitedString=myArray.join(delimiter);
var myList=new Ar ...
废话不说,直接上代码
Utils.java
/*
* Created on 2004-8-4
*
*/
import java.io.UnsupportedEncodingException;
/**
* @author LJ-silver
*/
public class Utils {
/**
* 从ip的字符串形式得到字节数组形式
* @param ip 字符串形式的ip
* @return 字节数组形式的ip
*/
public static byte[] getIpByteArray ...
错误信息很简单,
严重:Error listenerStart
然后在后面跟上些乱七八糟的东西,看到我不知所云,想了好多方法,在网上了查了好多的资料,可惜还是没有成功,求助于好友,他给我发来一个文章,这才让我度过了这太过于寒冷的冬天
地址:http://hi.baidu.com/chinese_j2ee/blog/item/2bbacc47b7da4d016a63e525.html
这样,我才知道是哪里的问题
1、在tomcat安装目录的common/classes中建立一个属性文件log4j.properties
2、在文件中写入日志的信息及日志记录的等级:
log4j.rootL ...