- 浏览: 420883 次
- 性别:
- 来自: 广州
最新评论
-
jxausea:
java.io.IOException: Keystore w ...
一个opoenfire与smack的例子 -
517913840:
请问 为什么我用roster.getPresence取用户的在 ...
一个opoenfire与smack的例子 -
cymmint:
请了,大哥
轻松利用JQuery实现ajax跨域访问 -
lishujuncat:
多谢,学下了
一个opoenfire与smack的例子 -
InSoNia:
不错
最简单的ajax例子
文章列表
/*
* 问题:
* HashMap<String, Integer> h = new HashMap<String, Integer>();
* h.put("李",4000);
* h.put("张", 1000);
* h.put("尹", 1000);
* h.put("廖", 5000);
*
* 用JAVA写一个算法,要求找出工资相等的人的名字?(不考虑重复)
*/
import java.util.ArrayList;
imp ...
- 2007-12-27 16:31
- 浏览 1231
- 评论(0)
我个人觉得看例子说话比较实际点,希望看的人能从例子中获得收获!
import java.util.Iterator;
import java.util.Map;
import java.util.TreeMap;
/**
* 这个是jdk1.4的版本,如果在1.5中会用得更加简单,这里我就不在多写
* 用于基于LogoOrde的排序, ...
- 2007-12-27 14:39
- 浏览 2355
- 评论(0)
在java.util.Map加入了一样的key,则这个key值的value会覆盖掉原来的value.
看例子最能说明问题:
public class Test {
public static void main(String[] args) {
Map<Integer,String> map=new HashMap<Integer,String>();
map.put(1, "one");
map.put(2, "two");
map.put(1, "three");
Set ...
- 2007-12-27 14:35
- 浏览 9927
- 评论(2)
父页面的javascript内容如下:
feature = "center=yes; dialogWidth=470px; dialogHeight=250px; help=no;" +
"status=no; resizable=no";
url="xx.html"
var arguments = new Array();
arguments[0] = comId;
arguments[1] = comName;
arguments[2] = img;
arguments[3] = ...
- 2007-12-25 15:16
- 浏览 3143
- 评论(0)
confirm用法和例子
- 博客分类:
- javascript
一般用于弹出对话框(确定/否)
确定:就执行其嵌套的内容;否:则反之
无论确定还是否它都会往下继续执行,除非其嵌套的内容执行了return
confirm('真的要删除吗?删除后将无法恢复!'){
……
}
例子:
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta name="generator" content="Bluefish 1.0.7">
...
- 2007-12-25 14:57
- 浏览 4108
- 评论(0)
2007年12月24晚,打球赛,因为对方的无球品球风,我很容易就被激怒了,接下来可以说是不理智的再打球,最后一分之差输掉了比赛。开始我很不服气也很不顺气,但是那天晚上我睡觉时总结下,最要原因还是我们自己令自己输了比赛,因为我的不冷静和做出一些不合理的判断。我 相信下次我会改过来,打出强硬的球风。
记住糟糕的决定,草率的行动,毫无规则,浪费金钱是失败之因。
谢谢我的失败让我变得更加看清楚我的弱点让我有机会改过来,以后会做得更好。
- 2007-12-25 08:16
- 浏览 1098
- 评论(0)
Node的属性介绍:
nodeType:显示节点的类型 1:ELEMENT_NODE 2:ATTRIBUTE_NODE 3:TEXT_NODE
nodeName:显示节点的名称
nodeValue:显示节点的值
attributes:获取一个属性节点
firstChild:表示某一节点的第一个节点
lastChild:表示某一节点的最后一个子节点
childNodes:表示所在节点的所有子节点
parentNode:表示所在节点的父节点
nextSibling:紧挨着当前节点的下一个节点
previousSibling:紧挨着当前节点的上一个节点
ownerDocument:(不知)
详 ...
- 2007-12-10 09:22
- 浏览 1403
- 评论(0)
这只是我做的一个例子:
sql语句:
create table vote(
id int auto_increment primary key not null,
creator varchar(20) not null,
title varchar(50) not null,
startTime date not null,
endTime date not null
);
create table voteContect(
id int auto_increment primary key not null,
thing varchar(100) not null,
...
- 2007-12-08 16:00
- 浏览 2631
- 评论(2)
package com.huanglq.filter;
import java.io.IOException;
import java.util.List;
import javax.servlet.FilterChain;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import ...
- 2007-12-07 14:57
- 浏览 1392
- 评论(0)
// 对Date的扩展,将 Date 转化为指定格式的String
// 月(M)、日(d)、小时(h)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符,
// 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字)
// 例子:
// (new Date()).Format("yyyy-MM-dd hh:mm:ss.S") ==> 2006-07-02 08:09:04.423
// (new Date()).Format("yyyy-M-d h:m:s.S") ...
这里介绍了javascript的4个基本方法的应用
getElementById()
getElementsByTagName()
getAttribute()
setAttribute()
这里还介绍了简单的css应用
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Welcome to try to use javascript</title>
&l ...
- 2007-12-05 08:33
- 浏览 953
- 评论(0)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<meta name="generator" content="Bluefish 1.0.7">
<meta name="author" content="root">
< ...
- 2007-12-04 15:38
- 浏览 1849
- 评论(0)
转自:http://www.freelamp.com/1015398272/index_html
http://www.freelamp.com/1015470737/index_html
InnoDB 介绍(一)
InnoDB 是 MySQL 上第一个提供外键约束的引擎,除了提供事务处理外,InnoDB 还支持行锁,提供和 Oracle 一样的一致性的不加锁读取,能增加并发读的用户数量并提高性能,不会增加锁的数量。
InnoDB 的设计目标是处理大容量数据时最大化性能,它的 CPU 利用率是其他所有基于磁盘的关系数据库引擎中最有效率的。
InnoDB 是一套放在 MySQL 后台的完整数据 ...
- 2007-12-04 14:29
- 浏览 6788
- 评论(0)
Tools--->Options--->External Programs
第1个不填
Application for comparing files:/usr/bin/diffmerge "%s" "%s"
Application for comparing directories:/usr/bin/diffmerge "%s" "%s"
Application for merging files:/usr/bin/diffmerge "%s" "%s"
/us ...
- 2007-12-04 10:29
- 浏览 1989
- 评论(0)
<script language="JavaScript">
function js_show(per_id)
{
window.open('/weihu/person/viewResume.jsp?perID='+per_id, 'resume', 'resizable=yes,menuBar=0,toolBar=0,scrollbars=yes,width=800,height=600,left=120,top=50');
}
</script>
perID对应msg.getFromUserId()
"<a href ...
- 2007-12-04 09:30
- 浏览 2095
- 评论(0)