安卓的学校教师 移动办公系统
1
目录
Abstract 1
Key words 1
引言 1
1.综述 1
1.1 开发背景 1
1.2 系统内容及开发意义 2
1.2.1 研究内容 2
1.2.2 移动办公系统开发的重大意义 2
1.3 国内外研究现状调研 2
1.4 相关背景知识 3
1.4.1 B/S和C/S 3
1.4.2 play framework 3
1.4.3 SQL语言与MySQL 3
1.4.4 Android开发 4
2.系统分析 4
2.1 可行性分析 4
2.1.1 经济可行性 4
2.1.2 政策可行性 4
2.1.3 技术可行性 4
2.1.4 模式可行性 4
2.2 需求分析 4
2.2.1 功能需求 4
2.2.2 性能需求 5
2.2.3 开发环境与运行环境 5
2.2.4 系统流程图 5
2.2.5 系统建模 6
3.系统总体设计 11
3.1 系统功能模块 11
3.1.1 网页服务器端部分 11
3.1.2 手机客户端部分 11
4.数据库设计 12
4.1 数据库概念结构设计 12
4.2 数据库逻辑结构设计 12
4.3 数据库的实现 13
5.系统详细设计 14
5.1 网页服务器端部分 14
5.1.1 UI设计 14
5.1.2 使用JPA自动反向映射实现数据库访问 14
5.1.3 登陆功能的实现 15
5.1.4 信息添加功能的实现 15
5.1.5 信息查看功能的实现 16
5.1.6 信息管理功能的实现 16
5.2 手机客户端部分 16
5.2. *好棒文|www.hbsrm.com +Q: ^351916072#
1 UI设计 16
5.2.2 用户界面Activity控制 17
5.2.3 利用Intent类实现屏幕跳转 18
5.2.4 界面布局 18
5.2.5 利用afianl的实现与服务器端交互 18
5.2.6 利用SQLite实现课程表 18
6.系统实现 18
6.1 网页服务器端部分 18
6.1.1 网页结构图 18
6.1.2 管理员操作部分 19
6.2 手机客户端部分 21
6.2.1 登陆界面 21
6.2.2 主界面 22
6.2.3 查看公告、签到签退 22
6.2.4 留言界面 22
6.2.5 申请请假用车界面 23
6.2.6 课表管理模块 23
6.2.7 日程管理、短信功能 24
7.系统测试 25
7.1 网页服务器端系统测试 25
7.2 手机客户端部分系统测试 25
致谢 26
参考文献 26
基于安卓的学校教师移动办公系统
网络工程专业学生 李戌瑞
指导教师 赵青松
摘要:?本文介绍了移动办公系统的设计与实现。该系统主要包括网页后台端和收集客户端两大部分,使用Eclipse和Android作为主要开发工具,并且严格按照软件工程的开发思想进行设计。该系统网页服务器端运用了play等技术,实现了教师管理等五大基本模块,手机客户端部分则实现了用户常用操作的一键完成。本文主要侧重点在于手机客户端UI设计布局及实现、后台管理人员操作界面的设计与开发、数据库的设计。本文首先介绍了此课题开发的背景、意义及国内外的研究现状,并且对于开发所用到的相关技术和工具做了简要介绍。接着详细介绍了系统的可行性分析、需求分析、总体设计、数据库设计等内容,最后对于系统的详细设计和实现也做了详细说明。
A Android Based Mobile Office System for School Teachers
Student majoring in network engineering LI Xurui
Tutor ZHAO Qingsong
Abstract:This paper describes the design and implementation of a Mobile Office System. The system includes web client and mobile client, Eclipse and Android are the main development tools, we are strict in designing and implementing the system with the software engineering development thinking. The web client used play framework, and has achieved five basic modules of system, we can use the mobile client to complete some common operation with one button. This paper focus on database design, the design and implementation of webpage used by administrator, the design and implementation of mobile client’s user interface and layout. This paper introduce the background, significance and research status firstly, and has a brief introduction of the techniques and tools used for the system in this part. Then elaborate the details of feasibility analysis, requirement analysis, system design and database design. The details of detailed design and implementation are described in the last part of this paper.
目录
Abstract 1
Key words 1
引言 1
1.综述 1
1.1 开发背景 1
1.2 系统内容及开发意义 2
1.2.1 研究内容 2
1.2.2 移动办公系统开发的重大意义 2
1.3 国内外研究现状调研 2
1.4 相关背景知识 3
1.4.1 B/S和C/S 3
1.4.2 play framework 3
1.4.3 SQL语言与MySQL 3
1.4.4 Android开发 4
2.系统分析 4
2.1 可行性分析 4
2.1.1 经济可行性 4
2.1.2 政策可行性 4
2.1.3 技术可行性 4
2.1.4 模式可行性 4
2.2 需求分析 4
2.2.1 功能需求 4
2.2.2 性能需求 5
2.2.3 开发环境与运行环境 5
2.2.4 系统流程图 5
2.2.5 系统建模 6
3.系统总体设计 11
3.1 系统功能模块 11
3.1.1 网页服务器端部分 11
3.1.2 手机客户端部分 11
4.数据库设计 12
4.1 数据库概念结构设计 12
4.2 数据库逻辑结构设计 12
4.3 数据库的实现 13
5.系统详细设计 14
5.1 网页服务器端部分 14
5.1.1 UI设计 14
5.1.2 使用JPA自动反向映射实现数据库访问 14
5.1.3 登陆功能的实现 15
5.1.4 信息添加功能的实现 15
5.1.5 信息查看功能的实现 16
5.1.6 信息管理功能的实现 16
5.2 手机客户端部分 16
5.2. *好棒文|www.hbsrm.com +Q: ^351916072#
1 UI设计 16
5.2.2 用户界面Activity控制 17
5.2.3 利用Intent类实现屏幕跳转 18
5.2.4 界面布局 18
5.2.5 利用afianl的实现与服务器端交互 18
5.2.6 利用SQLite实现课程表 18
6.系统实现 18
6.1 网页服务器端部分 18
6.1.1 网页结构图 18
6.1.2 管理员操作部分 19
6.2 手机客户端部分 21
6.2.1 登陆界面 21
6.2.2 主界面 22
6.2.3 查看公告、签到签退 22
6.2.4 留言界面 22
6.2.5 申请请假用车界面 23
6.2.6 课表管理模块 23
6.2.7 日程管理、短信功能 24
7.系统测试 25
7.1 网页服务器端系统测试 25
7.2 手机客户端部分系统测试 25
致谢 26
参考文献 26
基于安卓的学校教师移动办公系统
网络工程专业学生 李戌瑞
指导教师 赵青松
摘要:?本文介绍了移动办公系统的设计与实现。该系统主要包括网页后台端和收集客户端两大部分,使用Eclipse和Android作为主要开发工具,并且严格按照软件工程的开发思想进行设计。该系统网页服务器端运用了play等技术,实现了教师管理等五大基本模块,手机客户端部分则实现了用户常用操作的一键完成。本文主要侧重点在于手机客户端UI设计布局及实现、后台管理人员操作界面的设计与开发、数据库的设计。本文首先介绍了此课题开发的背景、意义及国内外的研究现状,并且对于开发所用到的相关技术和工具做了简要介绍。接着详细介绍了系统的可行性分析、需求分析、总体设计、数据库设计等内容,最后对于系统的详细设计和实现也做了详细说明。
A Android Based Mobile Office System for School Teachers
Student majoring in network engineering LI Xurui
Tutor ZHAO Qingsong
Abstract:This paper describes the design and implementation of a Mobile Office System. The system includes web client and mobile client, Eclipse and Android are the main development tools, we are strict in designing and implementing the system with the software engineering development thinking. The web client used play framework, and has achieved five basic modules of system, we can use the mobile client to complete some common operation with one button. This paper focus on database design, the design and implementation of webpage used by administrator, the design and implementation of mobile client’s user interface and layout. This paper introduce the background, significance and research status firstly, and has a brief introduction of the techniques and tools used for the system in this part. Then elaborate the details of feasibility analysis, requirement analysis, system design and database design. The details of detailed design and implementation are described in the last part of this paper.
版权保护: 本文由 hbsrm.com编辑,转载请保留链接: www.hbsrm.com/jsj/jsjkxyjs/1892.html