1 / 28
文档名称:

JAVA贪吃蛇游戏毕业设计.doc

格式:doc   页数:28页
下载后只包含 1 个 DOC 格式的文档,没有任何的图纸或源代码,查看文件列表

如果您已付费下载过本站文档,您可以点这里二次下载

分享

预览

JAVA贪吃蛇游戏毕业设计.doc

上传人:钻石文档库 2015/6/24 文件大小:0 KB

下载得到文件列表

JAVA贪吃蛇游戏毕业设计.doc

文档介绍

文档介绍:需全套源程序代码,联系QQ 695132052各专业都有
基于J2ME的手机游戏开发
摘要:随着通信技术的发展和手机的普及,手机游戏的开发技术越来越为人们所关注。以J2ME为开发平台,利用Java提供强大工具,不但可以在手机上实现静态HTML技术所无法实现的计算处理、数据存储、与服务器的通信等功能,而且能够开发各种手机游戏。本文在介绍J2ME及其体系结构的基础上,以贪吃蛇游戏为实例,描述了借助J2ME的MIDlet类库开发手机游戏的过程。
关键词:手机游戏; MIDP应用程序; 永久性数据
Develops based on the J2ME handset game
Abstract: Along munication development and handset popularization, people more and more pay attention to the handset game development technology. Develops the platform take J2ME, provides the powerful tool using Java, not only may realize the handset functions that static HTML technology be unable to realize, such putation processing, data storage, munication with server, but also can develop all kinds of handset games. On the basis of the technology and architecture of J2ME being introduced, the gluttonous snake game was taken as a example, the development process of handset game with the aid of the J2ME MIDlet class library is described in this article.
Key Words: Handset game; MIDP application pragram; Permanent data
目录
第一章绪论 1
研究背景 1
研究内容 1
第二章 J2ME及其体系结构概述 2
J2ME简介 2
J2ME 体系结构 2
移动信息设备简表概述 3
MIDP的目标硬件环境 3
MIDP应用程序 3
CLDC和MIDP库中的类 3
J2ME API简介 4
MIDP API概述 4
MIDlet应用程序 4
使用定时器 5
网络 6
使用Connector 7
使用HttpConnection 8
永久性数据(RMS) 9
存储集(Record Store) 10
记录 11
枚举 12
异常 13
用户界面(LCDUI 13
UI基础 13
高级UI 14
低级UI 15
第三章手机游戏开发过程 16
贪吃蛇游戏的规则简介以及开发环境 16
贪吃蛇游戏的规则简介 16
开发环境 16
详细设计 16
代码设计 17
第四章程序的调试与运行 22
22
游戏的运行环境 23
第五章总结 24
致谢 25
参考文献 25
第一章绪论
研究背景
JAVA自从20世纪90年代早期诞生以来,以其强大的功能迅速为广大程序员们所接受。从2001年开始,日本的国内的移动电话开始搭载Java。使用本来就是一种程序语言的Java之后,就可以在移动电话上完成以往静态的HTML内容所无法达成的计算处理、数据存储、与服务器的通信等等。如果能利用Java上其他丰富功能,那么就可以实现更多的功能。随着手机游戏的发展,国内外各大开发商纷纷运用Java进行手机游戏开发。J2ME作为一种基于Java的便携设备开发平台,在各大手机开发公司得到了广泛应用。
研究内容
本课题拟研究基于J2ME的手机游戏开发技术以及其特点,具体研究内容如下:
1、手机游戏开发以及J2ME的基本理论和J2ME类库的使用;
2、J2