搜索资源列表
jspjdlyb
- 留言本 需要修改的地方都有注释 你可以自行修改 主要有login.jsp和jdbc.java里面关系都数据库连接部分 jdbc你修改编译之后请放到WEB-INF\\classes\\wu目录下面 数据库采用的是mysql 建表语言是: CREATE TABLE liuyan_temp ( id int(6) NOT NULL auto_increment, url varchar(100) default # , ip varchar(20) default NULL, email varcha
jfcountv1.0
- 【首语】 非常感谢你能够对季风流量统计系统感兴趣。不管你是JAVA的初学者、还是JAVA的高手,对我敢肯定的对你说,中国JAVA技术的方发展,甚至我们中国软件业的发展,就是靠我们这些对软件开发感兴趣的人。 【说明】 本系统源代码是完全公开,绝无保留,无需注册,完全免费。各位大虾们也可对源代码时行自由修改和优化,尽量能够推出更好的版本,为广大网友免费下载。本系统使用潇湘多用户统计系统(asp版)的图片,我在此感谢网上给论坛免费提供图标,源码的技术人员,谢谢你们。 【功能】
2006HANNOI
- HANNOI-塔 3.4.1. 运行效果与程序发布 3.4.2. 主类 Tower 3.4.3. Hannoi-塔 HannoiTower 3.4.4. 塔点 TowerPoint 3.4.5. 盘子 Disk -HANNOI-tower 3.4.1. Operation and Release 3.4.2. Main categories Tower 3.4.3. Hannoi-tower HannoiTower 3.4.4. Tap point TowerPo int
classshapemain
- classshapemain.zip //: c03:AutoInc.java // Demonstrates the ++ and -- operators. // From Thinking in Java, 3rd ed. (c) Bruce Eckel 2002 // www.BruceEckel.com. See copyright notice in CopyRight.txt. public class AutoInc { public static
horrorshow
- horrorshow.zipic class BitwiseDemo { static final int VISIBLE = 1 static final int DRAGGABLE = 2 static final int SELECTABLE = 4 static final int EDITABLE = 8 public static void main(String[] args) { int flags = 0
multiinterfaces
- multiinterfaces.zipgBuffer searchMe = new StringBuffer( \"peter piper picked a peck of pickled peppers\") int max = searchMe.length() int numPs = 0 for (int i = 0 i < max i++) { //interested only in p s if (searchMe.charAt
finaloverridingillusion
- finaloverridingillusion.ziplic class DoWhileDemo { public static void main(String[] args) { String copyFromMe = \"Copy this string until you encounter the letter g .\" StringBuffer copyToMe = new StringBuffer() int i = 0 char
MMSMIDlet
- THIS SOURCE CODE IS PROVIDED AS IS , WITH NO WARRANTIES WHATSOEVER, EXPRESS OR IMPLIED, INCLUDING ANY WARRANTY OF MERCHANTABILITY, FITNESS FOR ANY PARTICULAR PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE, RELATING TO THE
Int_and_byte_conversion_reciprocally
- 整型int和字符数组byte相互转换的源程序:写了一个封装类来实现整型int和字符数组byte相互转换的功能.可以用于网络数据流的程序中,实现数据转换.-integer int array byte characters and the conversion of the source : Packaging was a category to achieve cosmetic int array byte characters and conversion functions. can be
sum
- 编写如下方法:求一个长整数的各位数之和:public static int qiuhe(long s) 找10~100之间能被3或5整除的数,每行输出5个数。
zboyediter_source_for_java
- 使用说明: 双击Demo.bat文件便可以执行 (需要配置好jre||JDK环境) 请输入sql语法关键字来测试改程序谢谢 目前支持的语法关键字如下设置: text.getSettings().setCase_Insensitive(false) // 不区分大小写 text.getSettings().addKeyWord1(\"select\") text.getSettings().addKeyWord1(\"commit\")
cwq4
- There is a shared object – int array[] between Write and Read. Write sets the array, Read gets the array and sorts ascending. Write a program to implement the write/read question by using synchronization mechanism and GUI.
RequestHandler
- Request代理 简化服务器端取值 包括int double String 及数组
L1_vector
- 输入四个点,判断此四点是否可形成一个平行四边形。 程序中描述了一个抽象数据类型Vector2D,表示一个向量。具有(x,y)两个值。其本身具有减另一个向量(minus(Vector2D)),判断自身是否为零向量(iszero()),与另一个向量对应值y,x乘积之差(inner(Vector2D))。由于两个向量平行,则乘积之差x1*y2-x2*y1=0。点A,B,C,D四点组成平行四边形的条件是AB//CD,BC//DA且各个向量皆不为零向量。 首先声明四个向量。向量i获得值的方法是
CRC16
- CRC16算法的Java实现,使用方法如下: CRC16 crc16 = new CRC16() byte[] b = new byte[] { // (byte) 0xF0,(byte)0xF0,(byte)0xF0,(byte)0x72 (byte) 0x2C, (byte) 0x00, (byte) 0xFF, (byte) 0xFE, (byte) 0xFE, (byte) 0x04, (byte) 0x00, (byte) 0x00,
snake
- 贪吃蛇*要点分析: *1)数据结构:matrix[][]用来存储地图上面的信息,如果什么也没有设置为false, * 如果有食物或蛇,设置为true;nodeArray,一个LinkedList,用来保存蛇的每 * 一节;food用来保存食物的位置;而Node类是保存每个位置的信息。 *2)重要函数: * changeDirection(int newDirection) ,用来改变蛇前进的方向,而且只是 * 保存头部的前进方向,因为其他的前进方向已经用位置来指明了。 其
CopyFile
- 基于某一文件创建一个输入流,然后基于某一文件创建一个输出流,定义一个int类型的变量,用来记录读出的字节个数,将输入流中的信息写入字节数组中,使用输出流的方法,将数组中的信息写入文件中
GeneratePossionDistribution_codes
- Generate Possion Dis. step1:Generate a random number between [0,1] step2:Let u=F(x)=1-[(1/e)x] step3:Slove x=1/F(u) step4:Repeat Step1~Step3 by using different u,you can get x1,x2,x3,...,xn step5:If the first packet was generated at time [
huaweiOJ-string-of-int-to-sort
- 华为oj闯关题 整形字符串排序。希望对做到华为oj上闯关题的同学们有一点点参考作用-huaweiOJ string of int to sort.I hope a little reference to the students who are preparing for the HUAWEI OJ checkpoints problem
ByteUtils
- 数值转换 byte 与 int short float double string long 等的转换(Numerical conversion)