Topic: 新手求一些类方法使用!

  Print this page

1.新手求一些类方法使用! Copy to clipboard
Posted by: sealsealseal
Posted on: 2006-03-30 21:42

已知stu.dat文件中有以下數據:
李小一 80 61 64 98
李小二 80 61 64 98
李小三 80 61 64 98
李小四 80 61 64 98
将“stu.dat"文件中的數據读出至Student 类的對象中。

class Student{
String name;
int eng;
int mat;
int sci;
Student(){}
Student(String name,int kor,int eng,int mat,int sci{//插入代碼}
//定義get()方法
//定義set() 方法
}
public class File14 {
public static void main(String[] args)throws Exception {
//File f=new File("D:\\4444.dat");
File f=new File("D:\\stu.dat");
FileInputStream fis=new FileInputStream(f);
DataInputStream dis=new DataInputStream(fis);
Student[] stu=new Student[6];
stu[0]=new Student(dis.readUTF(),dis.readInt(),dis.readInt(),dis.readInt(),dis.readInt());
stu[1]=new Student(dis.readUTF(),dis.readInt(),dis.readInt(),dis.readInt(),dis.readInt());
stu[2]=new Student(dis.readUTF(),dis.readInt(),dis.readInt(),dis.readInt(),dis.readInt());
stu[3]=new Student(dis.readUTF(),dis.readInt(),dis.readInt(),dis.readInt(),dis.readInt());
stu[4]=new Student(dis.readUTF(),dis.readInt(),dis.readInt(),dis.readInt(),dis.readInt());
stu[5]=new Student(dis.readUTF(),dis.readInt(),dis.readInt(),dis.readInt(),dis.readInt());
//插入代碼,输出实现
}
}

输出結果提示:
李小一 80 61 64 98
李小二 80 61 64 98
李小三 80 61 64 98
李小四 80 61 64 98

2.Re:新手求一些类方法使用! [Re: sealsealseal] Copy to clipboard
Posted by: mliwng
Posted on: 2006-04-02 15:42

stu[0]=new Student(dis.readUTF(),dis.readInt(),dis.readInt(),dis.readInt(),dis.readInt());
stu[1]=new Student(dis.readUTF(),dis.readInt(),dis.readInt(),dis.readInt(),dis.readInt());
stu[2]=new Student(dis.readUTF(),dis.readInt(),dis.readInt(),dis.readInt(),dis.readInt());
stu[3]=new Student(dis.readUTF(),dis.readInt(),dis.readInt(),dis.readInt(),dis.readInt());
stu[4]=new Student(dis.readUTF(),dis.readInt(),dis.readInt(),dis.readInt(),dis.readInt());
stu[5]=new Student(dis.readUTF(),dis.readInt(),dis.readInt(),dis.readInt(),dis.readInt());
在上面的代之间加上dis.next();试试看看


   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923