资源列表
universalsort
- java排序算法 包含各种算法 简单好用 详情请见源代码-java contains various sorting algorithm is simple handy details, see the source code
DOMPageList
- 这是一个关于解析XML的Java源代码,有兴趣的朋友可以-This a parsing XML on the Java source code, interested friends can s
chap4
- 这是一个关于JSP网页开发的,我一般用JBUILDER开发,别的不知道
linkcounter
- It s a link counter scr ipt.
ThreeDes
- *北京联通全网有关网上订购和点播接口URL加密算法 * *采用3DES加密, ECB模式/使用PKCS7方式填充不足位, *目前给的密钥是192位(24个字节)经过BASE64编码后的可见字符串-* Beijing Unicom, the whole network of the online ordering and on-demand interface URL encryption algorithm** using 3DES encryption, ECB mode/
Dijkstra
- Dijkstra s algorithm!!! How you can find the shortest path in a graph
jisuanqi
- java语言实现的一个计算器小程序,包含基本的界面和操作-language, a calculator java applet, including the basic interface and operation
Jzx
- 利用可视化编程,事件监听器的使用,来实现加法运算。-Use of visual programming, the use of event listeners, to achieve the addition.
java
- 在jsp页面上实现将查询结果显示在查询条件下面-Jsp page to display the query results in the query below
JsonUtil
- C:\Documents and Settings\Administrator\桌面\src\com\javaeedev\util-C: \ Documents and Settings \ Administrator \ Desktop \ src \ com \ javaeedev \ util
xiangqi
- 本实验需要先在一个象棋盘上建一个坐标轴,以输入各个棋子的位置坐标进行移动,但是对于棋子输入的初始坐标和移动后的坐标需要先判断坐标的位置是否合理,如果不合理就输出“输入错误”的提示。-This experiment you will need to build a coordinate axis in a chess board, to enter the coordinates of movement, but for the input of the initial coordinates a
TestScore
- 利用Vector代替数组处理:从键盘读入学生成绩(以负数代表输入结束),找出最高分,并输出学生成绩等级。 提示:数组一旦创建,长度就固定不变,所以在创建数组前就需要知道它的长度。 而向量类java.util.Vector可以根据需要动态伸缩。 创建Vector对象:Vector v new Vector() 给向量添加元素:v.addElement(obj) //obj必须是对象 取出向量中的元素:Object obj v.elementAt(0) 注意第