-
在线测试
目的 / 眼您需要安装 IDE Eclipse / Myeclipse / Netbeans。Oracle 10g 数据库。我们在这里,正在使用的用户名和密码的 oracle 的系统。热运行此项目导入在 IDE 项目并运行它。将自动创建的所有表。欢迎页面
- 2022-01-26 05:23:09下载
- 积分:1
-
java源代码测试locale
一个可运行的java源代码实例,测试locale。
已经被测试通过的。
- 2022-07-24 13:03:33下载
- 积分:1
-
j2me推箱子小游戏源代码
资源描述
* GameMidlet.java
*
* Created on 2007年12月15日, 上午12:56
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package gamepackage;
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
/**
*
* @author bense
*/
public class GameMidlet extends MIDlet{
private Display display=null;
private GameChoose choice=null;
public GameMidlet() {
choice=new GameChoose(this);
display=Display.getDisplay(this);
}
public void startApp(){
&nb
- 2022-07-26 05:31:15下载
- 积分:1
-
GoF 模式: 复合
In 软件工程, the 复合模式是一分区 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2023-05-17 05:55:03下载
- 积分:1
-
LL1算法编译第一跟踪表
应用背景在此代码中 src 我们实施合适的编译器为 LL1 算法。在该算法中,我们必须要计算第一次和遵循从语法表计算。在我们的项目中我们得到克 m er 文件从 txt 文件,以及系统的输入是 jc 文件。具有输入近 C 代码关键技术在3节的LL1算法必须解决。在1,我们必须找到第一个没有终端令牌。在2,我们必须找到的后续从第一。我在项目中,我们有一个扫描仪来寻找令牌。然后用一个解析器解析3节。
- 2022-12-23 16:00:08下载
- 积分:1
-
小游戏五子棋大战
class LNode{
private int row;
private int col;
private Color chessColor;
private LNode next;
public LNode(int row,int col,Color chessColor){
this.row=row;
this.col=col;
this.chessColor=chessColor;
}
public LNode(){
this.next=null;
}
public void setRow(int row){
this.row=row;
}
public int getRow(){
return this.row;
}
public void setCol(int col){
this.col=col;
}
public int getCol(){
return this.col;
}
public void setChessColor(Color chessColor){
this.chessColor=chessColor;
}
public Color getChessColor(){
return this.chessColor;
}
public void setNext(LNode next){
this.next=next;
}
public LNode getNext(){
return this.next;
}
}
class NullAndCount{
private int nullCount=0;
private int chessCount=0;
public void setNullCount(int nullCount){
this.nullCount=nullCount;
}
public int getNullCount(){
return this.nullCount;
}
public void setChessCoun
- 2022-05-08 02:47:07下载
- 积分:1
-
蓝牙接收数据,绘制波形
关于画图类的几点说明
* SurfaceView 是View的继承类,这个视图里
* 内嵌了一个专门用于绘制的Surface。可以控制这个Surface的格式和尺寸。
* SurfaceView控制这个Surface的绘制位置。
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2023-07-15 02:45:05下载
- 积分:1
-
使用mina框架实现网络协议的简单游戏服务端
使用mina框架实现网络协议的简单游戏服务端,可运行,初写游戏服务端,比较简单 希望大家多多完善
- 2022-02-03 23:37:56下载
- 积分:1
-
操作Excel之Poi视频教程
实现操作Excel功能,具体是对jsp页面中的数据导出Excel文件,并且用户可以自己选择导出方式,模板导出和自行导出两种,模板导出后,是按照系统自己提供的Excel模板导出数据的,自行导出是用本地电脑的Excel。并且提供批量上传功能,用户通过下载模板到本地,在模板中添加数据,然后完成上传批量数据的功能。
- 2022-12-23 08:55:03下载
- 积分:1
-
Java串口编程
Java串口编程的例子,包括了Java串口编程所需的Jar包,还有两个Java文件,分别是读取串口数据和写入串口数据
- 2022-11-14 12:45:02下载
- 积分:1