搜索资源列表
CalenderTrain.java
- At first you should be sure that your JDK1.4 is valid and all needed classes are in CLASSPATH. If you don t know how to set CLASSPATH, later a section will tell you. After unziped calendar.zip, there is a directory named fancy. Please
Command
- java设计模式的例子,Command模式
JAVA-DOS-command
- JAVA如何调用DOS命令,用Java编写应用时,有时需要在程序中调用另一个现成的可执行程序或系统命令,这时可以通过组合使用Java提供的Runtime类和Process类的方法实现。
painter2D
- 画板,在画板上画图形。 提供了撤销和恢复的功能,提供了存放命令的面板,放置画圆、画线等命令的按钮。-Sketchpad, in the Sketchpad drawing graphics. Provided the revocation and restoration of function, provides a storage panel orders placed drawcircle, painting lines command button.
Skype4Java
- Skype4Java开发指南 Skype4Java架构 Skype4Java提供了一个较为完善的开发体系,使您可以非常容易地使用Java开发Skype外壳程序。 Skype插件程序与Skype的通信都是基于一些文本命令来完成的。因此,要想开发Skype的插件应用,就需要依靠不同操作系统平台的系统调用,发送Skype平台的相应命令来实现。 Skype4Java在最底层,也是通过操作系统的系统调用来完成消息的发送。针对异构平台,Skype4Java提供了不同平台的底层实现
java1
- java语言编程实现:利用命令行参数解一元三次方程。 包含相关代码和运行结果 -java programming language: the use of command-line parameter cubic equation solution of one dollar. Contains the relevant code and operating results
javaCalendar
- 用java写的实现日历的小程序,能方便的嵌入到应用程序中去-There is a file named Manifest.mf in the zip package. Please find it. Please sure that all classes which are got by compiling are in directory fancy. Let current directory is fancy s parent. Then type below command:
mmtctc
- 软件介绍: 最大特点 1.跨平台,基本WEB服务,无论防火强怎么封端口,只要打开80,就可以远程管理服务器. 2.客户端无论安装任何插件. 3.只有一个JSP文件,文件名可以随意改,隐蔽性好. 功能: 1.文件管理: 包括对文件的操作和打包下载. 2.终端命令: 其实就是Win下的"命令提示符",可以通过命令进行重启服务器等操作 3.远程桌面: 和Windows系统的"mstsc"基本上一样,可以远程管理桌面. 4.任务管理: 可以查看正
ping
- 用JAVA实现PING命令-PING command to use JAVA to achieve ~~~~~~~~~~~~~~~~
Command
- GOF中的command模式之JAVA版-GOF java command
AWebsearchprogram
- 这是一个web搜索的基本程序,从命令行输入搜索条件(起始的URL、处理url的最大数、要搜索的字符串), 它就会逐个对Internet上的URL进行实时搜索,查找并输出匹配搜索条件的页面。 这个程序的原型来自《java编程艺术》, 为了更好的分析,站长去掉了其中的GUI部分,并稍作修改以适用jdk1.5。以这个程序为基础,可以写出在互联网上搜索 诸如图像、邮件、网页下载之类的“爬虫”。-This is a web search of the basic procedures, fro
id3
- The file ID3.java has a simple implementation of the algorithm. Data are read from a file whose filename is specified at the command line-The file ID3.java has a simple implementation of the algorithm. Data are read from a file whose filename is spe
Java.PrivilegedCode
- Privileged code in Java is a "all-or-nothing" proposition. While it does allow a normal user to execute some operations that would notmally require granting higher privileges (like viewing files in his particular directory), it may have a s
FileTransfer
- This is a command line tool written by Java to transfer file between two computers in a TCP/IP network.
java
- 本练习制作超链接事件的实例,执行实例后,将以只读方式显示命令行所传入的URL,本例显示在搜狐主页浏览的结果,并可点击进入链接。本实例的知识点有:显示HTML和超链接事件。-This exercise produced a hyperlink event instance, after the implementation of an instance, will be read-only display the command line of the incoming URL, this exa
java-URL
- 创建一个简单的HTTP客户程序,它访问由命令行参数(即main方法的参数)指定的一个网页并把得到的HTTP响应结果保存到本地文件系统的一个文件中。要求使用客户端协议处理框架编写。-Create a simple HTTP client, it is access from the command line parameters (the main 方法 the argument) specifies a Web page and which gain the HTTP Xiangying res
java
- Factory Pattern Chain of Responsibility Command Pattern Memento Pattern-show Factory Pattern Chain of Responsibility Command Pattern Memento Pattern process
java-Compile
- 主要介绍java编译的方法举例与说明,详细讲解了java的编译环境及相关命令。-Introduces the method of compiling java example and descr iption, explain in detail the java build environment and associated command.
java-chengxu
- last指令 吃豆豆 文件共享服务器 java源码实现 设计与说明-Eat Peas last command java source file-sharing server and instructions to implement the design
Command
- 命令模式实现餐厅 将来自客户端的请求传入一个对象,从而使你可用不同的请求对客户进行参数化。用于“行为请求者”与“行为实现者”解耦,可实现二者之间的松耦合,以便适应变化。分离变化与不变的因素。 ①接收者Receiver:是一个类的实例,负责执行与请求相关的具体操作; ②命令接口Command:封装请求的若干个方法; ③具体命令ConcreteCommand:实现命令接口类的实例; ④请求者Invoker:是一个包含Command接口变量的类的实例。请求者负责 调用具体命令,让具体命令执