登录

  • 登录
  • 忘记密码?点击找回

注册

  • 获取手机验证码 60
  • 注册

找回密码

  • 获取手机验证码60
  • 找回
毕业论文网 > 毕业论文 > 电子信息类 > 电子科学与技术 > 正文

基于APP的就医助理问诊系统的设计毕业论文

 2021-07-13 12:07  

摘 要

在当今信息社会,随着互联网信息技术的迅猛发展并且日益完善,人们对智能移动终端的需求日益增大。如今主要的手机操作系统中,android操作系统成为人们最受欢迎,使用人群追多的系统而受到多数人的追捧,尤其在国内占有主导地位,因此对于android程序的开发有了用户基础和发展空间。

在目前的医疗机构,尤其是各类大型医院,在中国人数巨大的情况下,病人挂号,叫号,等待结果,缴费等都耗费了大量的时间,有时候病人都不能得到及时的医治,医生的也会忙得焦头烂额。这个课题是基于android平台和患者的需求,设计一个基于Android的医疗终端,实现了患者不需要时时跑去医院,更不需要在医院长时间的等待,查看处方,一部手机就够了。本课题的优点有以下两点:针对患者看病难等方面的问题,给患者节约了许多时间:用户可以随时随地的操作,关注医院的动态,自己的病态等等。本文着手于智能医疗的服务端,分析了各种医疗系统的特点,根据医疗系统客户端的性能需求和功能需求,根据现有的手机客户端的现状,决定设计一个基于android的就医助理问诊系统,实现的功能有,分诊咨询,预约挂号,排队叫号,检查结果,缴费等功能。

本系统使用的是Java开发语言,在windows操作系统下,采用Eclipse软件开发工具,使用SQLite存储数据,根据android软件开发的步骤:需求分析;详细设计;程序编码;软件测试,进行设计、从而实现整个android的开发流程。

课题实现的功能模块有登录模块,分诊咨询模块,预约挂号模块,排队叫号模块,检查结果模块,缴费模块,使用SQLite数据库来模拟医院的服务器。

关键词 android ;Java开发 ;Eclipse ;SQLite数据库

Abstract

In today's information society, with the rapid development of Internet and the increasingly perfect, people growing demand for intelligent terminal. Now mainly in the mobile phone operating system, android operating system became the most popular people, use people chasing more system by the majority of people chase after hold in both hands, especially in the domestic dominant, so for android application development with the user base and development space.
In the present medical institutions, especially all kinds of large-scale hospital, in China the large number of cases, the patient registration, station to station, waiting for the result, payment and so on all cost a lot of time, sometimes the patient can be cured in time, the doctor will be busy. This subject is based on the android platform and the patient's needs, design a medical terminal based on android, has realized the patients do not need to always run to the hospital, more do not need t o be in the hospital for a long time of waiting, view your prescription, a cell phone is enough. This topic has the following two points: the advantages of patients difficult problems, such as this saves a lot of time to the patient: users can anytime, anywhere, on hospital dynamic and their pathological and so on. Attack intelligent medical service side, this paper analyses the characteristics of various medical system, according to the health system performance requirements for the client and the function demand, according to the situation of the existing mobile phone client, decided to design a medical assistant interrogation system based on android, implement features, triage consultation, make an appointment, line up your turn, test results, payment, etc.
This system uses the Java language, under the Windows operating system, the use of the Eclipse software development tools, use SQLite store data, according to the steps of the android software development: demand analysis; The detailed design; Program code; Software test, design, implementation, the whole android development process.
Subject to realize the function of the module has the login module, triage consulting module, make an appointment module, line up your turn module, check module as a result, capture expends module, use SQLite database server to simulate the hospital.
Keywords: android; Java development ;Eclipse; SQLite database

目 录

摘 要 I

Abstract II

第1章 绪论 1

1.1 课题研究背景介绍 1

1.1.1 智能移动终端发展现状 1

1.1.2 医院医疗就诊发展现状 1

1.2 国内外研究现状 2

1.3课题研究的内容 3

1.4课题研究目标和意义 3

1.5本文组织结构 4

1.6 本章小结 4

第2章 android开发的相关技术介绍 5

2.1智能手机操作系统相关介绍 5

2.1.1 Symbian 5

2.1.2 Windows Mobile 5

2.1.3 Palm 5

2.1.4 Linux 5

2.1.5 Android 6

2.2 Android操作系统框架 6

2.2.1 Android系统框架 6

2.3 Android开发的相关技术介绍 8

2.3.1 JDK简介 8

2.3.2 SDK简介 9

2.3.3 Eclipse简介 9

2.3.4 环境变量配置 10

2.4 Android项目开发 12

2.4.1 Android应用组件介绍 12

2.4.2 Android项目的应用结构分析 12

2.4.3 UI界面设计 14

2.5 SQLite数据库的介绍 14

2.5.1 创建数据库 14

2.5.2 创建表 15

2.5.3 填充数据 15

2.5.4 查询数据 15

2.6 本章小结 15

第3章 就医助理问诊系统的功能设计 16

3.1 系统的可行性分析 16

3.2系统总体设计 16

3.2.1 信息管理模块 17

3.2.2就诊模块设计 18

3.2.3缴费模块的设计 19

3.2.4 医院动态模块 20

3.3 本章小结 21

第4章 就医助理问诊系统的界面设计 22

4.1 登录/注册模块 22

4.2 医疗就诊模块 23

4.3 缴费模块 24

4.4 医院动态模块 25

4.5 本章小结 26

第5章 就医助理问诊系统的服务端的搭建 27

5.1客户端数据库的详细设计 27

5.2服务端数据库的设计 29

5.3 服务端与客户端的通信方式 30

5.4 本章小结 30

第6章 系统测试 31

6.1 功能测试 31

6.2 性能测试 31

6.3 本章小结 31

第7章 总结与展望 32

7.1 总结 32

7.2 问题分析 32

7.3 展望 32

7.4 本章小结 33

参考文献 34

致 谢 35

第1章 绪论

1.1 课题研究背景介绍

人类社会经历了三次工业革命,第三次科技革命是人类文明史上继蒸汽技术革命和电力技术革命之后科技领域里的又一次重大飞跃,从此人类历史进入了信息时代。并且随着互联网的发展,人们的生活越来越方便,而作为与人们息息相关的医疗科学,更是变化巨大。在中国,由于人口多,医疗问题更是显著,就目前在医院就医时,患者需要耗费大量的时间去排队挂号,排队约诊,医院更是人来人往,这样的就诊方式造成了病人的极大的不便,所以随着科学技术的发展,医疗智能终端的研发是一个迫在眉睫的方向。

1.1.1 智能移动终端发展现状

随着社会的发展,信息技术的创新,手机的发展已不再仅仅只是一种通讯工具,二十覆盖到了人类生活的方方面面,成为了人们生活,工作必备的工具。而随着智能手机的日益普及,智能移动端手机市场的扩大也是必然的。而在如今几类主要的手机操作系统中,Android在在国内的优势很大,它是目前为止第一个为智能移动终端打造的开发平台,可以广泛的支持各类移动设备如平板电脑或者是智能手机。

您需要先支付 80元 才能查看全部内容!立即支付

企业微信

Copyright © 2010-2022 毕业论文网 站点地图