基于android系统的人事管理系统设计与实现本科论文.docx
《基于android系统的人事管理系统设计与实现本科论文.docx》由会员分享,可在线阅读,更多相关《基于android系统的人事管理系统设计与实现本科论文.docx(61页珍藏版)》请在冰豆网上搜索。
基于android系统的人事管理系统设计与实现本科论文
基于Android的人事管理系统设计与实现
第1章绪论
1.1项目的来源及背景
智能手机有Symbian、Windows Phone、Android、IOS、BlackBerry 10这些系统。
Android系统鹤立鸡群占据着巨大的市场份额,随着人们接触的手机时间越来越长,针对Android系统的程序层出不穷。
每个手机都有APK程序,是人们简单方便的使用方式,而因为Android的巨大市场份额,Android平台下的手机程序更是受到青睐。
手机程序不仅操作方便,还能更快的使用,让用户在休闲的同时也能进行查询和工作。
与电脑的体积相比,手机的小巧便捷,方便的特性成为我们日常生活中必备通讯工具。
拥有巨大市场空间的手机平台程序会着智能手机的普及和应用必然会迎来新一轮的热潮。
在新一轮的热潮中,Android手机客户量大,所以手机程序的发展空间很可观。
1.2项目的功能
Android平台下的人事管理系统方便简洁,可以对员工进行增、删、改;部门管理的增、删、改、查,工资情况和员工信息的管理查询。
本文围绕着人事管理展开Java和Android的相关技术介绍,并把整个Android平台下人事管理系统的设计展示出来。
把整个人事管理系统设计分为登录模块、主控制模块、人员管理模块、工资管理模块、部门管理模块和综合管理模块。
各个模块分工不同,但有有相似之处,把整个系统完善起来。
设计的重点是各个模块的增、删、查、改功能,进而实现录入、修改、查询和删除的功能。
第二章概要设计
2.1开发工具
现在常用的Java项目开发环境有:
JBuilder、VisualAge for Java、Forte for Java, Visual Cafe、Eclipse、IDE、JCreator +J2SDK、JDK+记事本、J2SDK等等。
2.2Eclipse的开发环境
现今Eclipse应用广泛、功能强大,而且还可已按自己的需要下载各种插件来扩展它的功能,所以本设计选用的工具是Eclipse。
Eclipse 是一个开放源代码的、基于Java的可扩展开发平台。
Eclipse是利用各种插件来建立开放环境从而提供框架和服务的。
Eclipse 附带了一个标准的插件集,包括Java开发工具JDK。
被应用最多的Java SDK就是JDK了。
Java的运行环境、工具、基础类库都需要以JDK为基础
2.3运行环境
Android4.3及以上版本。
2.4项目的文档结构
WindowsXP、Eclipse、Android模拟机4.3等。
系统结构图如图2.1所示:
图2.1:
系统的文档结构图
2.5总体设计
该设计是Android平台下的人事管理系统。
包括职工信息的管理、个人工资信息的管理、部门管理和一个综合的查询功能,所有的信息都是储存在手机上的SQLite中,如果想让其可以联网真正的使用可以把数据信息转移到bmob平台上,更改以后应该可以适应简单的多用户管理。
本项目管理员默认用户名是admin,密码是123456。
项目默认编码GBK编译版本4.4.2本系统通过登陆界面登陆进入程序主界面。
系统的测试运行图2.2
图2.2测试运行图
该系统分为以下几个模块功能:
登录模块、主控制模块、人员管理 、管理员工资信息模块、工资管理模块、综合管理模块、部门管理模块和安全退出模块。
其中模块用有增删查改的功能如上测试运行图2.2所示。
第三章人事管理系统的详细实现
3.1系统的登陆界面功能模块
图3.1登陆界面运行效果图
3.1.1登陆界面的界面xml源文件
android:
layout_width="wrap_content"
android:
layout_height="wrap_content"
android:
orientation="vertical">
android:
id="@+id/textView5"
android:
layout_width="wrap_content"
android:
layout_height="wrap_content"
android:
text=""/>
android:
id="@+id/textView3"
android:
layout_width="wrap_content"
android:
layout_height="wrap_content"
android:
text="欢迎进入人事管理系统"
android:
textSize="23dp"/>
android:
layout_width="wrap_content"
android:
layout_height="wrap_content"
android:
text=""/>
android:
layout_width="match_parent"
android:
layout_height="wrap_content">
android:
layout_width="wrap_content"
android:
layout_height="match_parent">
android:
id="@+id/Information"
android:
layout_width="wrap_content"
android:
layout_height="wrap_content"
android:
text="用户名:
"/>
android:
id="@+id/userName"
android:
layout_width="match_parent"
android:
layout_height="wrap_content"
android:
layout_weight="1"
android:
ems="10"
android:
hint="请输入用户名"
android:
inputType="textPersonName"/>
android:
layout_width="match_parent"
android:
layout_height="wrap_content"
android:
orientation="vertical">
android:
layout_width="match_parent"
android:
layout_height="wrap_content">
android:
id="@+id/hh"
android:
layout_width="wrap_content"
android:
layout_height="wrap_content"
android:
text="密码:
"/>
android:
id="@+id/password"
android:
layout_width="wrap_content"
android:
layout_height="wrap_content"
android:
ems="10"
android:
hint="请输入密码"
android:
inputType="textPassword">
android:
layout_width="match_parent"
android:
layout_height="wrap_content"
android:
orientation="vertical">
android:
id="@+id/textView8"
android:
layout_width="wrap_content"
android:
layout_height="wrap_content"
android:
text=""/>
android:
layout_width="306dp"
android:
layout_height="wrap_content"
android:
orientation="vertical">
android:
layout_width="match_parent"
android:
layout_height="wrap_content">
android:
id="@+id/textView6"
android:
layout_width="wrap_content"
android:
layout_height="wrap_content"
android:
text=""/>
3.1.2登陆界面的Java源文件
publicvoidonCreate(BundlesavedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.logininterface);
getWindow().setBackgroundDrawableResource(R.drawable.activitybg);
//引入组件
userName=(EditText)findViewById(R.id.userName);
password=(EditText)findViewById(R.id.password);
login=(Button)findViewById(R.id.login);
reset=(Button)findViewById(R.id.reset2);
title=(TextView)findViewById(R.id.textView3);
title.setTextColor(Color.BLUE);
finalPersonDAOpersonDAO=newPerson