- 浏览: 518951 次
- 性别:
- 来自: 上海
最新评论
文章列表
//龙之谷
http://dragonnest.hangame.co.jp/lp/
http://dn.duowan.com/1001/128268881172.html
//下载地址
http://www.tkgame.com/longzhigu/2010-07-11/129852.html
转:
//ajax 入门详解 一
http://www.iteye.com/topic/631257
//ajax 入门详解 二
http://www.iteye.com/topic/631258
//ajax post 传送数据
http://04101334.iteye.com/blog/637695
//javascript 面向对象
转自:
http://www.iteye.com/wiki/Object_Oriented_JavaScript/1279-javascript-object-oriented-technology-one
http://archive.apache.org/dist/tomcat/
转
http://www.iteye.com/topic/481228
转
http://www.iteye.com/topic/636524
//验证是否为空
function check_blank(obj, obj_name){
if(obj.value != ''){
return true;
}else{
alert(obj_name + "所填不能为空!");
obj.value = "";
return false;
}
}
//过滤输入字符的长度
function check_str_len(name,obj,maxLength){ ...
一、一般 反射方法
/**
* is the class contains the given method or not
* @param clz the class that to judge if contains the method
* @param m the method to judge if in clz
* @return true if contains else false
*/
public static boolean isContainsMethod(Class<Obj ...
1.-------------------------
在网页程序中,
有时我们会希望使用者按下按钮后开启一个保持在原窗口前方的子窗口,
而在IE中,我们可以使用
showModalDialog来达成,
语法如下 :
var vReturnValue = window.showModalDialog(sURL [, vArguments] [, sFeatures])
范例:
window.showModalDialog("openwin.html","Arguments","dialogHeight: ...
在JSP里,获取客户端的IP地址的方法是:request.getRemoteAddr(),这种方法在大部分
情况下都是有效的。但是在通过了Apache,Squid等反向代理软件就不能获取到客户端的真实IP地址了。
在JSP里,获取客户端的IP地址的方法是:request.getRemoteAddr(),这种方法在大部分情况下都是有效的。但是在通过了
Apache,Squid等反向代理软件就不能获取到客户端的真实IP地址了。
如果使用了反向代理软件,将http://192.168.1.110
:2046/
...
//ファイル名のリストを返す
private String[] getFileNames(String strFold, String strFileName) {
final String strFileNameTemp = strFileName;
File file = new File(strFold);
String[] files = file.list(new FilenameFilter() {
public boolean accept(File dir, String nam ...
//IT词汇
http://bbs.neworldjp.com/dispbbs.asp?boardid=57&Id=40897
//电脑网络词汇
http://jp.hjenglish.com/page/1865/
import java.io.UnsupportedEncodingException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
public class TestMD5 {
private String getMD5Str(String str) {
MessageDigest messageDigest = null;
try {
messageDigest = MessageDigest.getInstance("MD ...