使用MVC将ArrayList转换为JList

时间:2016-03-15 08:33:36

标签: java model-view-controller arraylist jlist

我有3节课 ImpAppModel:

/* String array for saving members in the friendlist*/
public ArrayList<String> friendList = new ArrayList(10);

/**
 * Method for retrieving elements (added friends) in the array for use in 
 * GUI.
 * @return the elements in the ArrayList
 */
public ArrayList friendList() {
    //method filling the array with 1 testing record
    friendList.add(1, "petr");
    return friendList;
}

我查看了appPanel类(由NetBeans GUI Builder创建):

        Users.setModel(new javax.swing.AbstractListModel() {
        String[] strings = {"User1", "User2", "User3", "User4", "User5"};

        @Override
        public int getSize() {
            return strings.length;
        }

        @Override
        public Object getElementAt(int i) {
            return strings[i];
        }
    });
    /**
 * Method for setting users to display in GUI (variable JList Users)
 * @param user parameter for supplying JList
 */
public void setUser(JList user){
    this.Users = user;
}

最后我控制了ImpAppContorller类:

private final GuiPanel appPanel;
private final ImpAppModel impAppModel;
/**
 * Main constructor method, creates variables for saving links on Data and 
 * GUI.
 * @param appPanel Ensures communication between GUI panel and controller.
 * @param impAppModel Ensures communication between Model and controller.
 */
public ImpAppController(GuiPanel appPanel, ImpAppModel impAppModel) {

    this.appPanel = appPanel;
    this.impAppModel = impAppModel;

    appPanel.setUser(impAppModel.friendList.toArray());
}

我有一个错误:不可用的类型:Object []无法转换为Jlist 问题是(是的,我做了我的研究,我发现的解决方案不适合在MVC模式中使用)如何使用控制器类实现控制器(或修改模型/视图)以使用来自arrayList的元素为JList提供保持MVC模式。
/编辑:我怀疑我的问题是由GUI类中的 setUser 方法引起的,但问题仍然存在。

2 个答案:

答案 0 :(得分:1)

JListListModel的形式包含其数据。使用setModel()成员定义Jlist的数据。

将数组转换为Model对象显然没有意义,但是有一个方便的类DefaultListModel可用于将数组导入模型。所以在appPanel类中你可以添加

public void setUserData(Object [] data){
    DefaultListModel model = new DefaultListModel();
    model.copyInto(data);
    Users.setModel(model); // Users must exist
}

答案 1 :(得分:0)

appPanel.setUser(JList user)方法接受JList类型的对象,而在appPanel.setUser(impAppModel.friendList.toArray());中传递数组类型。

您应该执行appPanel.setUser(new JList(impAppModel.friendList.toArray()));

之类的操作

或者在AppPanel类中提供一个重载的setUser(String[] arr)方法,它接受一个数组并在内部创建JList对象。