我是靠谱客的博主 畅快羽毛,最近开发中收集的这篇文章主要介绍jtabel 遍历_Java获取JTable值(每行),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

I would like to get the value from the Jtable, and I tried it using the getvalueat however whenever I try to get the value from the JTable it only get the value from the first column of the selected row, I need to get all the value from the Jtable which I selected. Can you please help me with this one

here is my code:

class GetTableValue implements ActionListener{

public void actionPerformed(ActionEvent e){

AbstractButton button = (AbstractButton)e.getSource();

if(e.getActionCommand().equals(button.getActionCommand)){

int row = table.getSelectedRow();

int col = table.getSelectedColumn();

Object data = (Object)table.getValueAt(row, col);

JOptionPane.showMessageDialog(null, data);

}

}

}

This is my action event where the value of the selected table is shown in the JOptionPane unfortunately it only display one value(which is the one you already selected) not the whole row.

This code is for my Jbutton for call the action event(I already excluded my code from the JTable since it fetch the Jtable value from my database)

ActionListener tableAction = new GetTableValue();

buttonEdit = new JButton("EDIT");

buttonEdit.addActionListener(tableAction);

the code is plain and simple, I also search Mr. G(google) about a good tutorial on fetching row, unfortunately there isn't a good tutorial for fetching Jtable value(per row).

解决方案

getValueAt will return you the value of the cell (at row/col). Unless you're table model supports it, there is no convenient way (beyond what you are doing) to get the whole row in a single request.

Also, remember, if the table is sorted or filtered, the model indices will not match the view, you need to convert them first, using convertRowIndexToModel and convertColumnIndexToModel

UPDATE

The only way around it is if the table model you're using has a getRow (or equivalent) method. Without know how you are storing the data in the table model it's next to near impossible to give an accurate answer, but a general idea would be...

public class MyAwesomeTableModel extends AbstractTableModel {

// All the usual stuff...

public MyRowData getRowAt(int index) { ... }

}

Now, MyRowData is what ever implementation of the table data you've created. It could be (preferably) a single Object or in the case of the DefaultTableModel an array of objects.

class GetTableValue implements ActionListener{

public void actionPerformed(ActionEvent e){

AbstractButton button = (AbstractButton)e.getSource();

if(e.getActionCommand().equals(button.getActionCommand)){

int row = table.convertRowIndexToModel(table.getSelectedRow());

MyAwesomeTableModel model = (MyAwesomeTableModel)table.getModel();

MyRowData data = model.getRowAt(row);

JOptionPane.showMessageDialog(null, data);

}

}

}

This is all dependent on how you've implemented your TableModel and how you've implemented your row data, but that's the general jist

最后

以上就是畅快羽毛为你收集整理的jtabel 遍历_Java获取JTable值(每行)的全部内容,希望文章能够帮你解决jtabel 遍历_Java获取JTable值(每行)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部