- 浏览: 588006 次
- 来自: 北京
最新评论
-
lidi2011:
很通俗易懂的文章,很形象。
同步synchronized方法和代码块 -
inuyasha027:
领教了,谢谢。
Hadoop安装, Hive 安装。 -
xbmujfly:
好文 ,本人发现晚了
学习笔记 - java.util.concurrent 多线程框架 -
hanazawakana:
学习学习!
ANT-build.xml文件详解 -
david.org:
似乎还忽略一点,那就是cassandra不同数据中心的同步,H ...
Cassandra Vs HBase
文章列表
import java.io.File;
import java.io.IOException;
import java.io.RandomAccessFile;
class Fen {
String file; //要分割的文件名
int size; //被分割的文件大小
long[] byteArray;
Fen(String file, String size) {
this.file = file;
this.size = Integer.parseInt(size) * 1024 * 5;
}
public int splitFileNumber(int fil ...
- 2008-10-31 10:22
- 浏览 2696
- 评论(0)
Problem:
If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.
Find the sum of all the multiples of 3 or 5 below 1000.
Answer:
public static double count(int max,int count){ int a = 0; double sum =0; for(int i=2; ...
- 2008-10-28 17:43
- 浏览 1133
- 评论(0)
北京金融IT企业
中天信息技术有限公司 http://www.zhongtian.biz/index.htm中联集团 http://www.vandagroup.com/web/gb/gb_news02.php赞同科技宇信易诚 http://www.yuchengtech.com/yucheng/front/index.jsp用友软件易初电子易诚世纪新宇新晨科技先进数通 http://www.adtec.com.cn/泰利特科技 http://www.talenttech.com.cn/神州数码 ...
- 2008-10-22 09:42
- 浏览 1631
- 评论(0)
http://java.ccidnet.com/art/3737/20080413/1418265_1.html
http://www.yuanma.org/data/2007/0301/article_2365.htm
http://www.dedecms.com/web-art/fuwuqi/20060914/26236.html
http://www.verisignchina.com.cn/ssl/ev-faq.html
申请证书:
http://www.verisign.com/ssl/index.html
http://www.thawte.com/
https://kn ...
- 2008-09-27 19:28
- 浏览 1310
- 评论(0)
ColdFusion(直译:冷聚变),是一个动态Web服务器,其CFML(ColdFusion Markup Language)是一种程序设计语言,类似现在的JSP里的JSTL(JSP Standard Tag Lib),从1995年开始开发,其设计思想被一些人认为非常先进,被一些语言所借鉴。
Coldfus ...
- 2008-09-26 11:43
- 浏览 2143
- 评论(0)
路透
http://www.reuters.com/
http://cn.reuters.com/
彭博
http://www.bloomberg.com/?b=0&Intro=intro3
SWIFT society worldwide interbank financial telecommunication 环球同业银行金融电讯协会
http://www.swift.com/
http://www.xxeb.com/epay/international/20070520/1350.html
http://www.forexclub.biz/forex-swift-cn/ ...
- 2008-09-26 11:21
- 浏览 1132
- 评论(0)
1.基础篇
http://blog.csdn.net/axman/archive/2005/07/11/420890.aspx
http://blog.csdn.net/axman/archive/2005/07/11/420892.aspx
http://blog.csdn.net/axman/archive/2005/07/22/431796.aspx
http://blog.csdn.net/axman/archive/2005/07/22/431800.aspx
2.实战篇
http://blog.csdn.net/axman/archive/2005/07/22/431801.as ...
- 2008-09-10 14:30
- 浏览 1315
- 评论(0)
下载:
http://download.ej-technologies.com/jprofiler/jprofiler_windows_5_1_4_with_jre.exe
http://www.duduwolf.com/wiki/2007/311.html
http://yufeimen.iteye.com/blog/70721
http://pengjiaheng.spaces.live.com/blog/cns!2DAA368B386E6AEA!685.entry
- 2008-09-08 16:26
- 浏览 1252
- 评论(0)
http://www.duduwolf.com/wiki/2006/104.html
设计自己的Annotation Java
Annotation在java的世界正铺天盖地展开,有空写这一篇简单的annotations的文章,算是关于Annotation入门的文章吧,希望能各位们能抛砖,共同学习......
不讲废话了,实践才是硬道理.
第一部分:了解一下java1.5起默认的三个annotation类型:
一个是@Override:只能用在方法之上的,用来告诉别人这一个方法是改写父类的。
一个是@Deprecated:建议别人不要使用旧的API的时候用的,编译的时候会用产生警告 ...
- 2008-08-29 14:39
- 浏览 979
- 评论(0)
http://www.blogjava.net/lzhidj/archive/2008/07/10/213898.html
http://www.blogjava.net/lzhidj/archive/2008/07/08/213445.html
- 2008-08-27 19:32
- 浏览 2058
- 评论(0)
http://liguocai.zhmy.com/archives/2008/149931.html
Struts2中struts.xml的Action配置详解 使用package可以将逻辑上相关的一组Action,Result,Interceptor等组件分为一组,Package有些像对象,可以继承其他的Package,也可以被其他package继承, ...
- 2008-08-26 10:49
- 浏览 2457
- 评论(1)
Struts 2.0 DTD
<!--
Struts configuration DTD.
Use the following DOCTYPE
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
-->
<!ELEMENT struts (package|inclu ...
- 2008-08-25 14:50
- 浏览 1608
- 评论(0)
http://java.chinaitlab.com/base/38294.html
- 2008-08-21 15:53
- 浏览 921
- 评论(0)
Struts 2框架有两个核心配置文件: struts.xml和struts.properties 其中struts.xml文件主要负责管理应用中的Action映射,以及该Action包含的Result定义等。除此之外,Struts 2框架还包含一个struts.properties文件,该文件定义了Struts 2框架的大量属性,开发者可以通过改变这些属性来满足应用的需求。 struts.properties文件是一个标准的Properties文件,该文件包含了系列的key-value对象,每个key就是一个Struts 2属性,该key对应的value就是一个Struts ...
- 2008-08-21 15:53
- 浏览 1221
- 评论(1)