【Android基础】学生管理系统

news/2024/11/25 23:34:57/

用户可以输入姓名、性别、年龄三个字段,通过点击添加学生按钮,将学生信息展示到开始为空的ScrollView控件中,ScrollView控件只能包裹一个控件,我这里包裹的是LinearLayout。点击保存数据按钮将数据通过XmlSerializer对象将数据保存到sd卡中,当点击恢复数据按钮时将sd卡文件中的数据读取出来回显到ScrollView中。大概功能就是这样的,下面我们来看看具体的代码吧。

因为要读写文件,所以要在清单文件中添加两个权限:

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

首先,我们画出UI界面,具体代码和效果如下:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical" ><TextView
        android:id="@+id/title"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_gravity="center_horizontal"android:layout_marginTop="5dip"android:textSize="28sp"android:textColor="#D5F2F4"android:text="学生管理系统" /><LinearLayout android:layout_width="fill_parent"android:layout_height="wrap_content"android:layout_marginTop="5dip"android:orientation="horizontal"><LinearLayout android:layout_height="wrap_content"android:layout_width="0dip"android:layout_weight="1"android:orientation="vertical"><TextView android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_gravity="center_horizontal"android:textSize="18sp"android:textColor="#DAD5D9"android:text="姓名"/><EditText
                android:id="@+id/et_name" android:layout_width="fill_parent"android:layout_height="wrap_content"android:singleLine="true"/></LinearLayout><LinearLayout android:layout_height="wrap_content"android:layout_width="0dip"android:layout_weight="1"android:orientation="vertical"><TextView android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_gravity="center_horizontal"android:textSize="18sp"android:textColor="#DAD5D9"android:text="性别"/><EditText
                android:id="@+id/et_sex" android:layout_width="fill_parent"android:layout_height="wrap_content"android:singleLine="true"/></LinearLayout><LinearLayout android:layout_height="wrap_content"android:layout_width="0dip"android:layout_weight="1"android:orientation="vertical"><TextView android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_gravity="center_horizontal"android:textSize="18sp"android:textColor="#DAD5D9"android:text="年龄"/><EditText
                android:id="@+id/et_age" android:layout_width="fill_parent"android:layout_height="wrap_content"android:inputType="number"android:singleLine="true"/></LinearLayout><Button android:id="@+id/btn_add"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_gravity="bottom"android:textColor="@android:color/black"android:textSize="20sp"android:text="添加学生"/></LinearLayout><!-- ScrollView只可以包裹一个控件 --><ScrollView android:layout_width="fill_parent"android:layout_height="0dip"android:layout_weight="1"android:layout_marginTop="5dip"><LinearLayout android:id="@+id/ll_student_group"android:layout_width="fill_parent"android:layout_height="fill_parent"android:orientation="vertical"></LinearLayout></ScrollView><LinearLayout android:orientation="horizontal"android:layout_width="fill_parent"android:layout_height="wrap_content"android:layout_marginTop="5dip"><Button android:id="@+id/btn_save"android:layout_width="0dip"android:layout_height="fill_parent"android:layout_weight="1"android:textSize="20sp"android:textColor="@android:color/black"android:text="保存数据"/><Button android:id="@+id/btn_restore"android:layout_width="0dip"android:layout_height="fill_parent"android:layout_weight="1"android:textSize="20sp"android:textColor="@android:color/black"android:text="恢复数据"/></LinearLayout> </LinearLayout>

效果图:

这里写图片描述

之后我们要建立一个student的domain,就包括了三个字段,name、age、sex,为了方便观看,我也将Student代码也全部贴出来:

package cn.yzx.studentmanageros.domain;public class Student {private String name;private String sex;private Integer age;public Student() {super();// TODO Auto-generated constructor stub}public Student(String name, String sex, Integer age) {super();this.name = name;this.sex = sex;this.age = age;}@Overridepublic String toString() {return "Student [name=" + name + ", sex=" + sex + ", age=" + age + "]";}public String getName() {return name;}public void setName(String name) {this.name = name;}public String getSex() {return sex;}public void setSex(String sex) {this.sex = sex;}public Integer getAge() {return age;}public void setAge(Integer age) {this.age = age;}}

之后,也是最主要的,activity的实现文件,我这里直接将代码贴出来,因为注释的很清楚:

package cn.yzx.studentmanageros;import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.text.Format;
import java.util.ArrayList;
import java.util.List;import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
import org.xmlpull.v1.XmlSerializer;import android.app.Activity;
import android.graphics.Color;
import android.os.Bundle;
import android.os.Environment;
import android.text.TextUtils;
import android.util.Log;
import android.util.Xml;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.EditText;
import android.widget.LinearLayout;
import android.widget.TextView;
import android.widget.Toast;
import cn.yzx.studentmanageros.domain.Student;public class MainActivity extends Activity implements OnClickListener {private static final String TAG = "MainActivity";private EditText et_name;private EditText et_sex;private EditText et_age;private LinearLayout llStudentGroup;  //学生列表控件private List<Student> studentList;private File cacheFile = new File(Environment.getExternalStorageDirectory(), "student.xml");@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);init();}private void init() {studentList = new ArrayList<Student>();et_name = (EditText) findViewById(R.id.et_name);et_sex = (EditText) findViewById(R.id.et_sex);et_age = (EditText) findViewById(R.id.et_age);llStudentGroup = (LinearLayout) findViewById(R.id.ll_student_group);findViewById(R.id.btn_add).setOnClickListener(this);findViewById(R.id.btn_save).setOnClickListener(this);findViewById(R.id.btn_restore).setOnClickListener(this);}@Overridepublic void onClick(View v) {switch (v.getId()) {case R.id.btn_add: //添加学生//取出数据String name = et_name.getText().toString();String sex = et_sex.getText().toString();String age = et_age.getText().toString();//控制台打印数据Log.e(TAG, "name="+name+",sex="+sex+",age="+age);//判断是否有数据为空if(TextUtils.isEmpty(name) || TextUtils.isEmpty(sex) || TextUtils.isEmpty(age)){Toast.makeText(this, "请重新输入", 0).show();break;}//封装成Student实体Student student = new Student(name, sex, Integer.valueOf(age));//添加到学生列表中addToStudentList(student);break;case R.id.btn_save: //保存数据boolean isSuccess = saveStudentList();if(isSuccess){Toast.makeText(this, "保存成功", 0).show();}else {Toast.makeText(this, "保存失败", 0).show();}break;case R.id.btn_restore: //恢复数据// 恢复数据之前, 需要把集合中和LinearLayout中的数据全部清空studentList.clear();// 把线性布局中所有的控件全部移除llStudentGroup.removeAllViews();//从文件中读取数据List<Student> readStudentList = readStudentList();// 把取出回来的数据, 一条一条的添加到学生列表中for (Student stu : readStudentList) {addToStudentList(stu);}break;default:break;}}private List<Student> readStudentList() {List<Student> studentList = null;// 构建一个XmlPullParser解析器对象XmlPullParser parser = Xml.newPullParser();// 指定要解析的文件try {parser.setInput(new FileInputStream(cacheFile), "utf-8");// 开始解析: 获取EventType解析事件, 循环去判断事件int eventType = parser.getEventType();Student student = null;while(eventType!=XmlPullParser.END_DOCUMENT){// 当前的事件类型不等于结束的document, 继续循环String tagName = parser.getName();switch (eventType) {case XmlPullParser.START_TAG:if("students".equals(tagName)){//<students>studentList = new ArrayList<Student>();}else if ("student".equals(tagName)) {//<student>student = new Student();}else if ("name".equals(tagName)) {student.setName(parser.nextText());}else if ("sex".equals(tagName)) {student.setSex(parser.nextText());}else if("age".equals(tagName)){student.setAge(Integer.valueOf(parser.nextText()));}break;case XmlPullParser.END_TAG:if("student".equals(tagName)){studentList.add(student);}break;default:break;}eventType = parser.next();  // 取下一个事件类型}return studentList;} catch (Exception e) {// TODO Auto-generated catch blocke.printStackTrace();}return null;}private boolean saveStudentList() {String path = cacheFile.getPath();Log.e(TAG, "保存文件的路径:"+path);//得到一个序列化对象XmlSerializer serializer = Xml.newSerializer();try {//指定输出流serializer.setOutput(new FileOutputStream(cacheFile), "utf-8");//写start_documentserializer.startDocument("utf-8", true);// 写<students>serializer.startTag(null, "students");for (Student student : studentList) {Log.e(TAG, student.toString());// 写<student>serializer.startTag(null, "student");// 写<name>serializer.startTag(null, "name");serializer.text(student.getName());// 写</name>serializer.endTag(null, "name");// 写<sex>serializer.startTag(null, "sex");serializer.text(student.getSex()); // 写</sex>serializer.endTag(null, "sex");// 写<age>serializer.startTag(null, "age");serializer.text(String.valueOf(student.getAge())); // 写</age>serializer.endTag(null, "age");// 写</student>serializer.endTag(null, "student");}// 写</students>serializer.endTag(null, "students");//写end_documentserializer.endDocument();return true;} catch(Exception e) {e.printStackTrace();}return false;}/*** 把给定的学生添加到学生列表中* @param student*/private void addToStudentList(Student student) {// 把学生信息添加到集合中, 为了方便呆会去保存studentList.add(student);//创建一个TextView对象,并设置其内容TextView tv = new TextView(this);String text = "     "+student.getName()+"    "+student.getSex()+"     "+student.getAge();tv.setText(text);tv.setTextSize(18);tv.setTextColor(Color.BLACK);// 把TextView添加到学生列表中llStudentGroup.addView(tv);}
}

大家可以试试,有什么问题可以留言讨论,本人才学android,希望各位大神指正。


http://www.ppmy.cn/news/421181.html

相关文章

网课管理系统

开发工具(eclipse/idea/vscode等)&#xff1a; 数据库(sqlite/mysql/sqlserver等)&#xff1a; 功能模块(请用文字描述&#xff0c;至少200字)&#xff1a; 3. 功能简介 用户中心 1.1用户注册&#xff1a;用户需要注册才能登陆进入web 1.2用户登录&#xff1a;通过判断匹配来进…

基于微信小程序的家校通系统

项目介绍 基于微信小程序的家校通系统的设计基于现有的手机&#xff0c;可以实现首页、个人中心、家长管理、教师管理、科目类型管理、成绩发布管理、成绩统计管理、作业发布管理、上传电子作业管理、家长讨论、留言板管理、系统管理等功能。方便家长和教师对首页、作业发布、…

《学习之道》 读书记录

如 verilog 学习总结 这篇文章所说&#xff0c;后面关于读书的博客 重点写自己体会比较深的地方。 这个书的起源是Coursera 上面很火的课程《Learning how to learn》&#xff0c; 貌似是根据课程字幕翻译来的&#xff0c; 几个主讲者都是 学术大牛&#xff0c; 其中一个男教授…

课堂管理系统——Android

实现一个课堂管理系统&#xff0c;将已完成的数据库部分增加聊天室部分 apk文件名&#xff1a; apk资源文件&#xff1a; AndroidManifest.xml <?xml version"1.0" encoding"utf-8"?> <manifest xmlns:android"http://schemas.android.c…

微信小程序 家校通 中小学家校联系电子作业系统

通过对各种资料的收集&#xff0c;了解到“校讯通”是联系社会的窗口&#xff0c;是实现家校联系工作和学校教育工作量化管理的有效手段&#xff0c;是国家级的研究课题。不仅可以整合学校管理&#xff0c;而且还大大减轻了各种工作量。家长和学生用户的需求具体体现在各种信息…

博看书苑机构号

安微省图书馆账号:ahst 密码:ahst 营口理工学院账号:yklgxy 密码yklgxy 南华大学图书馆账号:usc 密码:usc 大连大学图书馆账号:DALIANDX 密码:100140 兴义市图书馆账号xyslib 密码:xyslib 对外经济贸易大学图书馆账号:uibelib 密码:uibelib 东北农业大学图书馆账号:dbnylib 密码…

计算机课学生段密码,启课程学生端电脑版

启课程学生端电脑版是一款简单方便的在线学习软件&#xff0c;用户可以通过启课程学生端电脑版随时随地进行学习&#xff0c;方便学生进行课前预习以及课后复习&#xff0c;功能丰富十分实用。 基本简介 启课程学生端电脑版是一款专为高校学生准备的学习互动平台&#xff0c;支…