-
1
说明: javaweb 新闻管理系统 新闻管理系统 新闻管理系统 新闻管理系统(javaweb news manager system)
- 2017-01-11 16:35:42下载
- 积分:1
-
JAVA贪吃蛇
import java.awt.*;
import javax.swing.*;
@SuppressWarnings("serial")
public class MainClass extends JFrame {
ControlSnake control;
Toolkit kit;
Dimension dimen;
public static void main(String[] args) {
new MainClass("my snake");
}
public MainClass(String s) {
super(s);
control = new ControlSnake();
control.setFocusable(true);
kit = Toolkit.getDefaultToolkit();
dimen = kit.getScreenSize();
add(control);
setLayout(new BorderLayout());
setLocation(dimen.width / 3, dimen.height / 3);// dimen.width/3,dimen.height/3
setSize(FWIDTH, FHEIGHT);
setDefaultCloseOperation(JFrame.EXIT_ON_CLO
- 2022-04-17 23:49:25下载
- 积分:1
-
沃达丰betavine java API的源代码,最新的快照。
Vodafone betavine java api source code, the latest snapshot.
- 2022-05-24 00:57:27下载
- 积分:1
-
这是一个黑白棋的小游戏。里面有初级中级高级三个级别的棋力选择。算法采用了自己编写的全盘搜索的经验积分算法,速度很快,棋力不是非常强。本游戏还可以自动演示,自动重...
这是一个黑白棋的小游戏。里面有初级中级高级三个级别的棋力选择。算法采用了自己编写的全盘搜索的经验积分算法,速度很快,棋力不是非常强。本游戏还可以自动演示,自动重温棋局,保存棋局,还有英雄榜。-This is a game of Reversi. Intermediate Junior High There are three levels of棋力choice. Algorithm uses its own search for the preparation of the overall experience of integral algorithm, fast,棋力not very strong. This game can also automatically demonstration, automatic review game, save game, there are heroes list.
- 2022-07-18 19:32:29下载
- 积分:1
-
WordCount
说明: 一个hadoop写的mapreduce的wordcount的入门示例。对入门很有帮助(Write a hadoop entry mapreduce the wordcount example. Helpful for beginners)
- 2011-03-14 15:53:50下载
- 积分:1
-
com.niis.myprice
RCP 小型商品管理系统 具有增删改查保存等功能(for rcp )
- 2020-06-29 09:00:02下载
- 积分:1
-
学生注册
我的参考代码将添加到给定的项目。这个登录、显示和注销的目的包括各自的时间。
- 2022-04-29 01:01:57下载
- 积分:1
-
jdbc连接数据库
该项目是在以为mysql数据库为例,以java程序实现连接数据库数!
- 2023-09-07 14:20:04下载
- 积分:1
-
计算器在 JAVA 中
它代码项目是一个代码计算器业务基础知识。它计算器是同一个电子计算器。
- 2023-07-02 20:20:02下载
- 积分:1
-
ASP是Active Server Pages的简称,它是一种在微软公司的WEB服务器IIS(Internet Infomation Server)上开发交互网...
ASP是Active Server Pages的简称,它是一种在微软公司的WEB服务器IIS(Internet Infomation Server)上开发交互网页的新技术。是一种服务器端的Script环境。 使用asp可以建立动态,交互式高性能的Web服务器应用,我们知道,目前有很多版本的浏览器可供使用。传统上,我们在开发Web应用时,要嵌入一些Script语言如VB,JAVA到html中,使这些script运行在client端,也就是浏览器,但并不是每个浏览器都支持所有的Script语言,比如Netscape就不支持client端的VBscript,这对我们的应用带来很大的不便。使用asp时,应用程序是在server端运行而不是在client端。当用户访问一个asp时,首先Web Server调用asp文件,并读取asp文件的全部内容后并开始执行所有的Script命令,生成html页,再把这些html页传到用户端的浏览器上,并完成操作。这样,我们就不用担心用户所使用的浏览器的类型了,Web Server端已经处理了一切。微软公司最初在IIS3.0版上使用它以取代CGI。随着Windows NT在WWW上的使用日益增多,ASP已经成为了开发动态网站、构筑Internet和Intranet应用的最佳选择.-ASP is the Active Server Pages abbreviation, it is one kind (Internet Infomation Server) on develops the interactive homepage in Microsoft Corporation s WEB server IIS the new technology. Is one kind of server end Script environment. Uses asp to be possible to establish the tendency, the interactive high performance s Web server application, we knew, at present has many edition browsers to be possible to supply the use. In the traditio
- 2022-11-17 05:25:03下载
- 积分:1