搜索资源列表
JBuilder制作音频播放程序(2)
- JBuilder制作音频播放程序,需要注意的是,当播放时,界面上的各个按钮应当仍然可以对用户的操作进行事件响应,所以至少需要两个线程:一个控制歌曲的播放,另外一个对用户事件进行响应。因此我们的AudioPlay类需要实现Runable接口,以使用多线程技术。根据JDK的解释-JDK1.4.0,任何需要由线程执行的实例都应当实现Runable接口,而且由于我们只需要重写run()方法和stop()方法,并给start()方法多态化,所以我们选择实现Runable接口,这样就可以不需要继承Threa
在Java Applet中实现动画
- 在Java中实现动画有很多种办法,但它们实现的基本原理是一样的,即在屏幕上画出一系列的帧来造成运动的感觉。 我们先构造一个程序的框架,再慢慢扩展,使之功能比较齐备。 -in Java to achieve animation there are many ways, but they realize the basic principle is the same as that on the screen he painted a series of frames to crea
fy
- 基于RMI的学生成绩管理程序,实现了线程,事件模型.-based RMI student performance management process to achieve a thread, event model.
搜索
- 一个java的数据挖掘程序,实现关键字的搜索分类-a data mining program, realized the keyword search Categories
JAVA+JSP程序系统的JSP聊天室
- JAVA+JSP的聊天室 可以实现网络聊天 可以提供实时通讯-Java JSP chat room can chat network can provide real-time communications
java聊天室程序
- java聊天室程序,介绍如何用jsp实现聊天室程序-java chat room procedures on how to use chat rooms to achieve jsp procedures
nbookshop
- 一个网上书店程序!实现网上购书结算等! 由jsp+javabean+mysql组成! 功能很完善-an online bookstore procedures! Realizing online bookstores settlement! By jsp javabean mysql composition! Functional perfect! !
SimpleImageEffect
- 一个简单的APPLET的程序,实现了图象渐变过程,是个很少见也很不错的web特效!-APPLET a simple procedure, the images gradual process. rarely is a very good web effects!
UsefullSkill
- 在本目录中放置的是精选的实用例子程序,目录中放置的子目录根据节数来编号,同时,以程序实现的功能为名称。如:2.3 高级搜索,表示在该目录下放置了实现高级搜索的JSP程序代码。可以做为网络编程分阶实行。-placed in this catalog is the selection of practical examples of procedures, directory placed in a subdirectory under section to a few numbers, Mea
JSP+JAVA BEAN实现的计数器程序
- JSP+JAVA BEAN实现的计数器程序-JSP Java Beans procedures to achieve the Counter
程序实现任意文件的拷贝功能
- 编写一程序实现任意文件的拷贝功能,源文件名和目的文件名由命令行参数提供。 2.创建一个学生对象,并把它输入到一个文件(mytext.txt)中,然后再把该对象读出来,将其还原后打印出来。 ,Write a program to achieve any file copy function, source file name and destination file name from the command line parameter. 2. To create a student obj
atm1
- 本程序实现了银行取款机的模拟,分别设置了取款,存款,修改密码等功能.-Implementation of the procedures the bank teller machines of the simulation, set up separately withdrawals, deposits, change password functions.
pb
- java画图程序 实现了圆、矩形、直线等功能 适合初学者练习-java drawing program to achieve the round, rectangular, linear features such as exercises for beginners
tanchishe
- 简单的小程序实现贪吃蛇游戏,代码总共只有200多行-Simple applet Snake game, a total of 200 multi-line code
JFreechar图表java程序
- 用java编程语言实现的JFreechar图表,包括折线图,柱形图、饼图以及组合图
聊天程序
- Java聊天程序,实现简单的局域网聊天功能(Java online chat program)
JavaApplication32
- 本程序实现的是用于画图的编辑器。作为最基本的功能,本软件可以完成图形文件打开、编辑、保存以及一些简单的图形绘制的操作。(This program implements an editor for drawing. As the most basic function, this software can complete the operation of graphics files to be opened, edited, saved, and some simple graphic dr
【JavaScript高级程序设计(第3版)】中文 高清
- 全书从Javascr ipt 语言实现的各个组成部分——语言核心、DOM、BOM、事件模型讲起,深入浅出地探讨了面向对象编程、Ajax 与Comet 服务器端通信,HTML5 表单、媒体、Canvas(包括WebGL)及Web Workers、地理定位、跨文档传递消息、客户端存储(包括IndexedDB)等新API,还介绍了离线应用和与维护、性能、部署相关的最佳开发实践(The book from every part of the Javascr ipt language - the lang
java实现的本地文件管理器
- java实现的本地文件管理器,模仿Windows的文件资源管理器,显示列表,文件操作等。(The local file manager implemented by java, imitates the file manager of Windows, display list, file operation, etc.)
实现多线程Java程序
- 编写一个Java程序,实现多线程,在线程中输出线程的名字,隔300毫秒输出一次,共输出20次。