⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 studentdaofromfile.java

📁 关于网上考试系统的
💻 JAVA
字号:
package com.tarena.exam.dao;

import java.io.FileInputStream;
import java.io.ObjectInputStream;
import java.util.HashSet;

import com.tarena.exam.model.Student;

public class StudentDaoFromFile implements StudentDao{
	private String fileName;
	
	public StudentDaoFromFile(String fileName){
		this.fileName=fileName;
		//????
	}
	
	public Student getStudent(int id, String passwd) {
		FileInputStream fis=null;
		ObjectInputStream ois=null;
		HashSet<Student> hs=null;
		try {
			fis=new FileInputStream(fileName);
			ois=new ObjectInputStream(fis);
			hs=(HashSet<Student>)ois.readObject();
			for(Student s:hs){
				if(s.getId()==id && s.getPasswd().equals(passwd)){
					return s;
				}
			}
		} catch (Exception e) {
			e.printStackTrace();
		}
		return null;
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -