在消息对话框中显示记录列表

时间:2013-05-07 11:41:22

标签: java swing jframe joptionpane

这是情况,我有一个医生记录数组,其中有名字,医生ID,联系电话等属性。我试图在JOptionPane消息对话框中显示所有注册的医生ID及其联系号码,我希望按下按钮时会发生这种情况。它应该显示为列表。

这可能吗?我试过了,但我只设法显示一条记录,其他记录都是混乱的。

感谢您的时间。

1 个答案:

答案 0 :(得分:0)

应该是直截了当的

样品:

医生班

package com.doc;

public class Doctor {

    private String name;
    private int id;

    public Doctor(String name, int id) {
        super();
        this.name = name;
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }
}

医生演示

package com.doc;

import java.util.ArrayList;
import java.util.List;

import javax.swing.JOptionPane;

public class DoctorDemo {

    /**
     * @param args
     */
    public static void main(String[] args) {
        List<Doctor> doctors = new ArrayList<Doctor>();

        // populate from database
        // im hard coding
        doctors.add(new Doctor("Test", 1));
        doctors.add(new Doctor("Test2", 2));
        doctors.add(new Doctor("Test3", 3));
        String message = "\n Doctor records \n ";
        for (Doctor doc : doctors) {
            message += "\n\n\n" + "Name:" + doc.getName() + "Id:" + doc.getId();
        }
        JOptionPane.showMessageDialog(null, message);
    }
}

显示如何在joption消息对话框中显示。