摘要随着Android系统的广泛使用,使得Android手机应用程序数量呈现飞速增长的趋势,社交类应用更是数不胜数,但是当前只有PC端的驴友交友平台,移动端仍无人涉足,开发一款旅游交友软件则可以满足这一需要。81373
本文旨在设计并实现一个基于Android的旅游社交软件,采用C/S模式,利用J2EE设计服务端,Android SDK设计客户端,通过HTTP协议完成客户端与服务端的数据交换。服务端采用MySQL数据库、客户端采用SQLite数据库来进行数据存储。该App主要包括用户登录、注册、用户管理、动态管理、地图、消息管理等功能模块。
本文从系统需求、系统实际、代码实现几个方面介绍了整个软件的开发过程。本系统界面友好、操作便捷,具有良好的可扩展性和可维护性。通过测试,该软件已能够在Android手机上稳定运行。
毕业论文关键词 Android;旅游;社交软件
毕业设计说明书外文摘要
Title Design and implementation of tourism diary based on Android
Abstract With the extensive use of Android system, The number of applications for Android mobile phones is increasing, and the application of social class is beyond count。 But at present only the PC side of the tour pal dating platform, nobody designed the portable application,so developing a travel dating software can meet this need。
This paper aims to design and implement a Android based tourism social software, and the entire system uses the C/S mode architecture。 Using J2EE framework design server and Android SDK design client, and using HTTP protocol to exchange data between server and client。 Server using MySQL database and Client using SQLite database。 The App mainly includes user login, registration, user management, dynamic management, map, message management and other functional modules。
In this article, I’d like to introduce the whole development process of this software in details from the system requirements, system realization,code implementation and some other aspects。 The system is user-friendly, easy to operate, has good scalability and maintainability。 After testing, the software has been able to stable operation on the Android phone。
Keywords Android;travel;social software
目 次
1 绪论 1
1。1 课题背景 1
1。2 研究意义 1
1。3 研究现状 1
2 系统理论与相关技术 3
2。1 Android 3
2。1。1 Android简介 3
2。2 J2EE 5
2。2。1 J2EE技术 5
2。2。1 SSM框架 6
2。3 数据库 7
2。3。1 MySQL 5。0数据库 7
2。3。2 SQLite数据库 7
3 系统分析与设计 8
3。1 功能模块设计 8
3。2 界面原型设计 8
3。3 数据库设计 9
3。3。1 数据库表详情 10
3。3。2 数据库表关联 12
3。4 系统架构设计 12
4 系统实现