JAVA在线API
http://java.sun.com/reference/api/
JavaTM Platform Enterprise Edition, v 5.0
http://java.sun.com/javaee/5/docs/api/
1.Hibernate API Documentation (3.2.2.ga)
http://www.hibernate.org/hib_docs/v3/api/
2.Spring Framework API 2.5
http://static.springframework.org/spring/docs/2.5.x/api/index.html
3.Struts 1.3.8 API
http://struts.apache.org/1.3.8/apidocs/index.html
4.Struts 2 Core 2.0.11.1 API
http://struts.apache.org/2.0.11.1/struts2-core/apidocs/index.html
5.ajax4jsf:JSF的Ajax框架
http://www.jboss.org/file-access/default/members/jbossrichfaces/freezone/docs/apidoc_framework/index.html
6.JBoss API
http://docs.jboss.org/jbossas/javadoc/4.0.5/
7.OSGI R4
http://docs.huihoo.com/javadoc/osgi/r4/
8.JBoss Seam
http://docs.jboss.com/seam/2.1.0.A1/api/
9.Seam JSF Controls 2.1.0.A1 API
http://docs.jboss.com/seam/2.1.0.A1/ui/apidocs/
10.ROR
http://docs.huihoo.com/api/ruby-on-rails/
11.Ruby1.8.4
http://docs.huihoo.com/api/ruby/core/1.8.4/
12.Ruby Stdlib
http://docs.huihoo.com/api/ruby/stdlib/0.10.1/
13.JBPM/BPEL1.1
http://docs.jboss.com/jbpm/bpel/v1.1/javadoc/
14.Groovy JDK API Specification
This document describes the methods added to the JDK to make it more groovy.
http://groovy.codehaus.org/groovy-jdk/
15.Groovy (1.6-beta-1) API
http://groovy.codehaus.org/api/index.html
16.Groovy 1.5 API
http://groovy.codehaus.org/gapi/
17.Grails1.0 API
http://grails.org/doc/1.0.x/api/
18.在线JDK6 API:
http://gceclub.sun.com.cn/Java_Docs/jdk6/html/zh_CN/api/index.html
下载地址:
http://java.sun.com/javase/downloads/index.jsp
19.其他Java SE APIs & Documentation:
[url]
http://java.sun.com/javase/reference/api.jsp[/url]
20.在线Java API List:
http://java.sun.com/reference/api
21.JavaEE5 API(含JSF API)
http://java.sun.com/javaee/5/docs/api/
22.Ajax框架DWR API Doc
http://www.ajaxjs.com/docs/docs/
23.Google Maps API 2.0 参考文档
http://www.step1.cn/GoogleApi/map2/reference.htm
相关文档:
1.下载2005数据库驱动(sqljdbc.jar)
2.这时要用Eclipse等集成开发环境,在build path里面把2000数据库驱动包删除了,然后导进2005数据包。
3.把代码中注册数据库驱动的代码换成2005的代码。
如:
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver"); // 2005 version
Class.forName("com.microsoft.jdb ......
Java版俄罗斯方块
08年写的一个Java版俄罗斯方块程序
界面做的中规中矩,每种形状颜色都不相同
程序控制还可以,没什么大的Bug
消磨时间的时候可以Down下来玩玩
下载链接:http://download.csdn.net/source/2384193
菜单选项
也做了不少菜单选项
可自定义控制键,可设置单色彩色显示,可设置网格是否显示
关 ......
一、数组是什么?
1.基本概念:
Definition:数组就是相同类型元素的线性集合。
Array is a collection of the same data.
An array is object.
对数组的理解:
数组是一个对象,是一个指向数组的引用对象。
2.Syntax
Array Copy
二、为什么要使用数组?
......