设计 任务书 文档 开题 答辩 说明书 格式 模板 外文 翻译 范文 资料 作品 文献 课程 实习 指导 调研 下载 网络教育 计算机 网站 网页 小程序 商城 购物 订餐 电影 安卓 Android Html Html5 SSM SSH Python 爬虫 大数据 管理系统 图书 校园网 考试 选题 网络安全 推荐系统 机械 模具 夹具 自动化 数控 车床 汽车 故障 诊断 电机 建模 机械手 去壳机 千斤顶 变速器 减速器 图纸 电气 变电站 电子 Stm32 单片机 物联网 监控 密码锁 Plc 组态 控制 智能 Matlab 土木 建筑 结构 框架 教学楼 住宅楼 造价 施工 办公楼 给水 排水 桥梁 刚构桥 水利 重力坝 水库 采矿 环境 化工 固废 工厂 视觉传达 室内设计 产品设计 电子商务 物流 盈利 案例 分析 评估 报告 营销 报销 会计
 首 页 机械毕业设计 电子电气毕业设计 计算机毕业设计 土木工程毕业设计 视觉传达毕业设计 理工论文 文科论文 毕设资料 帮助中心 设计流程 
垫片
您现在所在的位置:首页 >>计算机毕业设计 >> 文章内容
                 
垫片
   我们提供全套毕业设计和毕业论文服务,联系微信号:biyezuopin QQ:2922748026   
基于Android的办公自动化系统APP设计与实现 毕业论文+项目源码
文章来源:www.biyezuopin.vip   发布者:毕业作品网站  

目录

NANCHANG  UNIVERSITY

THESIS  OF  BACHELOR

摘  要

Abstract

第一章  绪论

1.1本课题的来源

1.2本课题的目的、内容、要求及作者主要贡献

1.2.1目的:

1.2.2内容:

1.2.3要求:

1.2.4作者的主要贡献:

第二章   Android 应用程序开发环境与工具的选择

2.1本课题开发环境的选择

2.2本课题开发工具的选择

第三章   需求分析

3.1 OA系统企业级需求调研

3.2程序需要实现的功能

3.2.1 用户安全登陆、退出应用程序

3.2.2 流程管理

3.2.3 日程管理

3.2.4 邮件系统

3.2.5 通讯录

3.2.6 即时通讯系统

3.2.7 信息发布

3.2.8 统计报表

3.3 程序实现方案选择

第四章   概要设计

4.1 系统的简单设计

4.1.1 登录与身份认证

4.1.2 公告发布

4.1.3 功能菜单

4.2系统的效果说明

第五章   系统详细设计

5.1 系统功能的详细设计

5.1.1 登录与身份认证

5.1.2 功能菜单

5.1设计应用程序框架

5.1.1编写应用程序框架

5.1.2为应用程序编写开始界面

5.1.3为界面按钮增加事件处理

5.2 应用程序代码的包的设计

5.2.1 Package org.hexor.oa

5.2.2 Package org.hexor.oa.bean

5.2.3 Package org.hexor.oa.constant

5.2.4 Package org.hexor.oa.network

5.2.5 Package org.hexor.oa.service

5.2.6 Package org.hexor.oa.util

5.2.7 Package org.hexor.oa.adapter

5.3应用程序内容的设计

5.3.1用户身份验证

5.3.2数据库存取操作

5.3.3流程对象的设计

5.3.4应用程序与服务器之间的通讯

5.3.5服务器端接收请求的设计

5.3.6应用程序线程的设计

5.3.7应用程序后台Service的设计

5.4添加应用程序的其它功能

5.4.1设计关于对话框

5.5系统主要界面效果

第六章  系统测试

6.1测试举例

6.1.1测试程序登录页面

6.1.2测试程序主页面

6.1.3测试程序退出页面

6.2测试项目

6.2.1单元测试

6.2.2组合测试

6.2.3确认测试

6.2.4系统测试

6.2.5用户验收测试

6.3测试方法

第七章 总 结

参考文献(References)

致  谢

附件:源代码

OA办公自动化系统在Android手机上的实现

摘  要

OA办公自动化系统自从上个世纪企业级应用的诞生以来,在公司内部作为业务流程的载体,员工沟通的平台,一直以来为保证企业的高效率运作起着十分重要的作用。

OA办公自动化系统一般都拥有固定的业务逻辑,需求以及功能,是学习企业级软件开发或者客户端/服务器软件开发的一个经典实例。随着现代高级编程语言的发展和智能移动终端的普及,也为了提高用户与OA系统的交互能力,手机端的OA系统已经成为企业OA系统不可或缺的一部分。

本毕业设计论文介绍使用Java语言设计一个Android手机端OA系统的过程,整个系统是一个Android手机端APP应用,使用了标准的Android SDK开发接口以及Google官方标准的UI设计。手机应用设计过程中涉及了应用界面的编写,内部业务逻辑的设计,变量的定义,算法设计实现,以及与服务器之间的数据交换,从而完成一整套从前必须在PC端才能完成的业务流程。另外,论文也介绍了如何使用Python编写一个为本Android应用设计的服务器端程序。

通过本次毕业设计可以学到开发一个标准的Android手机应用,如何使用标准的模块设计一款手机应用,如何使用Socket完成Android应用程序与Python服务器之间的数据通讯。

本论文中第一章介绍本课题的来源、目的、内容、要求及作者有关信息;

第二章介绍了开发工具和开发环境的背景;

第三章分析该毕业设计的程序业务流程、使用说明、规则、设计思路及其开发的注意事项;

第四章论述了该毕业设计的思想和总体结构及流程;

第五章并详细阐述系统的开发步骤及有关重点实现细节;

第六章进行系统测试并简要介绍测试方法;

第七章提及了开发过程中心得体会、经验和感想

最后是参考资料

关键词 :移动OA;Android; Python网络编程;客户端/服务器;Socket数据通讯


The Implementation of the OA System

on the Android SmartPhone

Abstract

OA office automation system as the carrier of business processes and employee communication platform within companys, has been played a very important role to ensure the efficient operation of enterprises, since the naissance of enterprise applications in the last century.

OA office automation systems generally have a regular business logic, demand and function, is a classic example of praciticing enterprise level software or client / server software development. With the development of modern high-level programming language development and the popularization of mobile intelligent terminal units, in order to improve the user's ability to interact with the OA system, mobile phone terminal OA system has become an indispensable part of OA system.

This thesis introduced using of Java language to design a Android mobile phone terminal OA system, the whole system is a Android mobile phone APP, using the standard Android SDK interface and Google official standard UI design.Mobile phone application involved the design process of the application interface to prepare, internal business logic design, variable definitions, algorithm design and the implementation of between the server and the clients’ data communication, finally all these completing a set of operation which used must be in the PC terminal to complete the business process.In addition, the paper also introduces how to use Python to write a server end procedure which designed for this Android application.

Through this thesis of bachelor, we can learn how to develop a standard Android mobile phone application, how to use the standard module design a mobile phone application, how to use the Socket to connect a Android application and a server with Python.

Chapter I: Devoted to the subject of the origin, purpose, content, and requests information on the author;

Chapter II: Describes the development tools and development environment background;

Chapter III: Analysis of the graduate design rules of the game, rules, Design and development of the attention;

Chapter IV: Chapter of the graduate design thinking and the overall structure and process;

Chapter V: Detailed steps for the development and realization of the key details;

Chapter VI: System testing and briefed test methods;

Chapter VII: Chapter of the development process center in the experience, experiences and thoughts chap reference

In the end : Some reference sources.

Keywords : OA , Android, Python Network Programming, C/S, Socket















  全套毕业设计论文现成成品资料请咨询微信号:biyezuopin QQ:2922748026     返回首页 如转载请注明来源于www.biyezuopin.vip  

                 

打印本页 | 关闭窗口
本类最新文章
基于10kV配电网线损的仿真计算 华兴科技公司网络规划与设计 毕业 宠物之家寄养系统的设计与实现 毕
SSM的毕业生去向登记分析管理系 Hadoop 的预制菜溯源预测系 YOLOv3改进算法在道路裂缝检
| 关于我们 | 友情链接 | 毕业设计招聘 |

Email:biyeshejiba@163.com 微信号:biyezuopin QQ:2922748026  
本站毕业设计毕业论文资料均属原创者所有,仅供学习交流之用,请勿转载并做其他非法用途.如有侵犯您的版权有损您的利益,请联系我们会立即改正或删除有关内容!