active questions tagged jtable - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T09:02:12Zhttp://stackoverflow.com/feeds/tag/jtablehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/978865/footer-row-in-a-jtable1Footer row in a JTableLuke Quinane2009-06-11T01:13:18Z2009-12-18T18:42:35Z
<p>What is the best way to put a footer row into a JTable? Does anyone have any sample code to do this?</p>
<p>The only approach I've thought of so far is to put a special row into the table model that always get sorted to the bottom.</p>
<p><hr /></p>
<p>Here is what I ended up with:</p>
<pre><code>JTable mainTable = new JTable(mainTableModel);
JTable footerTable = new JTable(footerModel);
footerTable.setColumnModel(mainTable.getColumnModel());
// Disable selection in the footer. Otherwise you can select the footer row
// along with a row in the table and that can look quite strange.
footerTable.setRowSelectionAllowed(false);
footerTable.setColumnSelectionAllowed(false);
JPanel tablePanel = new JPanel();
BoxLayout boxLayout = new BoxLayout(tablePanel, BoxLayout.Y_AXIS);
tablePanel.setLayout(boxLayout);
tablePanel.add(mainTable.getTableHeader()); // This seems like a bit of a WTF
tablePanel.add(mainTable);
tablePanel.add(footerTable);
</code></pre>
<p>Sorting works fine but selecting the footer row is a bit strange.</p>
http://stackoverflow.com/questions/1905897/jtable-onchange-event0JTable onchange eventBaversjo2009-12-15T08:11:54Z2009-12-15T08:25:15Z
<p>Is there any way to detect a cell <strong>selection</strong> change in a JTable? I've found documentation for detecting a row change using ListSelectionListener but it doesn't seam to work when changing selection on the same row. I'm using JTable to render a simple schedule. </p>
<p>Maybe I should use a different component?</p>
http://stackoverflow.com/questions/1882400/is-there-a-convenient-way-to-use-a-spinner-as-an-editor-in-a-swing-jtable1Is there a convenient way to use a spinner as an editor in a Swing JTable?Uri2009-12-10T16:58:57Z2009-12-10T18:59:29Z
<p>I deal with numeric data that is often edited up or down by 0.01*Value_of_variable, so a spinner looks like a good choice compared to a usual text cell. </p>
<p>I've looked at DefaultCellEditor but it will only take text fields, combo boxes or check boxes.</p>
<p>Is there a convenient way to use a spinner?</p>
http://stackoverflow.com/questions/1466392/is-possible-to-associate-a-text-to-a-jtableheader-without-a-table0Is possible to associate a text to a JTableHeader without a table?Leandro2009-09-23T14:34:16Z2009-12-05T13:22:17Z
<p>Hi,
I want to create a JTable with a header inside some cells. But I want to associate a text with this header. Is it possible? How to do?</p>
<p>All my best!
Leandro Lima</p>
http://stackoverflow.com/questions/1846863/jtable-queue0Jtable & queue !!wasim2009-12-04T13:11:52Z2009-12-04T15:47:46Z
<p>Hello!
I am new at using Jtable and I need some help. I want to write the following CODE to display data from queue in the table</p>
<p>a problem : the data does not appear in the table</p>
<p>i dont kow what is a problem !!</p>
<p>i need help , please</p>
<p><strong>Source Code :</strong></p>
<p>// class student</p>
<pre><code>public class student {
int id,age;
String fn,ln;
public student(int id,String fn,String ln,int age){
this.age = age;
this.id = id;
this.fn = fn;
this.ln = ln;
}
}
</code></pre>
<p>// class node</p>
<pre><code>public class node {
student info;
node link;
public node(student st,node next){
this.info = info;
this.link = link;
}
}
</code></pre>
<p>// class queue</p>
<pre><code>import javax.swing.*;
public class Queue{
node front ,rear;
int length;
public void enqueue( student x){
node newnode=new node(x,null);
if(front==null)
front=rear=newnode;
else{
rear.link=newnode;
rear=newnode;
}length++;
}
public student dequeue(){
student temp=front.info;
if(front==null && rear==null){
throw new RuntimeException("empty");
}else{
front=front.link;
if(front==null)
rear=null;
length--;
}return temp;
}
public String[][] getData(){
Queue x= new Queue();
x.front= front;
x.rear = rear;
String s[][] = new String[x.length][4];
if(x.front==null){
JOptionPane.showMessageDialog(null,"the Queue is empty,you must add new student befor");
}else{
student tmp;
for(int i=0;i<x.length;i++){
try{
tmp = x.dequeue();
s[i][0] = tmp.id + " ";
s[i][1] = tmp.fn;
s[i][2] = tmp.ln;
s[i][3] = tmp.age + " ";
}catch(Exception e){
System.out.println("Exception from getData");
}
}
}
return s;
}
}
</code></pre>
<p>// class program</p>
<pre><code>import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class program extends JFrame implements ActionListener{
Container c;
JTextField txtID,txtFN,txtLN,txtAge;
JLabel lblTitle,lblID,lblFN,lblLN,lblAge;
JButton btnAdd,btnUpdate,btnDelet,btnPrint,btnSort,btnRefresh,btnCancel;
JTable table;
String data[][];
Queue q;
public program(){
c = getContentPane();
setTitle(" Student Applicaion ");
c.setLayout(null);
q = new Queue();
// add lbl
lblTitle = new JLabel("ADD NEW STUDENT");
lblTitle.setFont(new Font ("Helvetica", Font.PLAIN, 20));
lblTitle.setBounds(50,20,200,20);
c.add(lblTitle);
lblID = new JLabel("ID");
lblID.setBounds(50,50,70,20);
c.add(lblID);
lblFN = new JLabel("First Name");
lblFN.setBounds(50,80,70,20);
c.add(lblFN);
lblLN = new JLabel("Last Name");
lblLN.setBounds(50,110,70,20);
c.add(lblLN);
lblAge = new JLabel("Age");
lblAge.setBounds(50,140,70,20);
c.add(lblAge);
// add txt
txtID = new JTextField();
txtID.setBounds(130,50,120,20);
c.add(txtID);
txtFN = new JTextField();
txtFN.setBounds(130,80,120,20);
c.add(txtFN);
txtLN = new JTextField();
txtLN.setBounds(130,110,120,20);
c.add(txtLN);
txtAge = new JTextField();
txtAge.setBounds(130,140,120,20);
c.add(txtAge);
// add btn
btnAdd = new JButton("Add");
btnAdd.setBounds(90,180,70,25);
c.add(btnAdd);
btnRefresh = new JButton("Refresh");
btnRefresh.setBounds(165,180,80,25);
c.add(btnRefresh);
btnUpdate = new JButton("Update");
btnUpdate.setBounds(300,50,100,20);
c.add(btnUpdate);
btnDelet = new JButton("Delet");
btnDelet.setBounds(300,80,100,20);
c.add(btnDelet);
btnPrint = new JButton("Print");
btnPrint.setBounds(300,110,100,20);
c.add(btnPrint);
btnSort = new JButton("Sort");
btnSort.setBounds(300,140,100,20);
c.add(btnSort);
btnCancel= new JButton("Cancel");
btnCancel.setBounds(355,435,80,25);
c.add(btnCancel);
// add table
// print();
btnAdd.addActionListener(this);
btnUpdate.addActionListener(this);
btnDelet.addActionListener(this);
btnPrint.addActionListener(this);
btnSort.addActionListener(this);
btnRefresh.addActionListener(this);
btnCancel.addActionListener(this);
setSize(450, 500);
setLocationRelativeTo(null);
setDefaultCloseOperation(EXIT_ON_CLOSE);
setVisible(true);
}
public void actionPerformed(ActionEvent e){
if(e.getSource() == btnCancel)
System.exit(0);
else if(e.getSource() == btnRefresh){
txtAge.setText("");
txtFN.setText("");
txtID.setText("");
txtLN.setText("");
}
else if(e.getSource() == btnAdd){
if(isThreeDigit(txtID.getText().trim()) == false || isNumber(txtID.getText().trim()) == false)
JOptionPane.showMessageDialog(null,"you entered invalid ID");
else if(isCapital(txtFN.getText().trim()) == false)
JOptionPane.showMessageDialog(null,"you must begin First name with capital Character");
else if(!isString(txtFN.getText().trim()) || !(isString(txtLN.getText().trim())))
JOptionPane.showMessageDialog(null,"You can't enter number on your name");
else if(checkAge(txtAge.getText().trim()) == false)
JOptionPane.showMessageDialog(null,"You must enter real age in numbers format");
else{
student st = new student(Integer.parseInt(txtID.getText().trim()),txtFN.getText(),
txtLN.getText(),Integer.parseInt(txtAge.getText().trim()));
q.enqueue(st);
// print();
}
}
else if(e.getSource() == btnPrint){
print();
}
}
public void print(){
String col[] = {"ID","FName","LName","Age"};
data = q.getData();
table = new JTable(data,col);
// table.editingStopped(ChangeEvent e) ;
JScrollPane scrollPane = new JScrollPane(table);
scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
scrollPane.setBounds(10,230,420,200);
c.add(scrollPane);
}
//~~~~~~~~~~~~ Constraints
public boolean isThreeDigit(String id){
if(id.length() <= 3)
return true;
return false;
}
public boolean checkAge(String age){
if(!isNumber(age) || Integer.parseInt(age) > 90 || Integer.parseInt(age) < 6 )
return false;
return true;
}
public boolean isNumber(String id){
for(int i=0;i<id.length();i++){
char c=id.charAt(i);
if(c>'9'|| c<'0')
return false;
}
return true;
}
public boolean isString(String id){
for(int i=0;i<id.length();i++){
char c=id.charAt(i);
if(c<='9'|| c<='0')
return false;
}
return true;
}
public boolean isCapital(String FN){
char c=FN.charAt(0);
if(c>='A'&& c<='Z')
return true;
return false;
}
public static void main (String[] args) {
new program();
}
}
</code></pre>
http://stackoverflow.com/questions/1839219/mutually-exclusive-celleditors-in-jtable1Mutually Exclusive CellEditors in JTablecolinjameswebb2009-12-03T11:00:52Z2009-12-03T17:11:05Z
<p>I currently have a problem whereby editing the contents of one cell in a JTable alters the content of another; two of the columns are mutually exclusive. They are both checkboxes.</p>
<p>At the moment, if I alter one cell, it isn't until the other is redrawn that it updates. Therefore, both cells in the row can be displayed as being selected at any one time. This can be overcome by calling updateUI(), but it is slow and not a generally great idea.</p>
<p>Has anyone got any tips or suggestions?</p>
http://stackoverflow.com/questions/1831672/problem-with-checkboxes-in-jtable-column0problem with Checkboxes in Jtable column Bharath2009-12-02T09:15:05Z2009-12-02T13:27:36Z
<p>Hi all,
I have a Jtable with 6 columns where i have Check boxes in the 6th Column.I am outing the text in to JTable by using the setValueAt() and getValueAt() methods.For the same Jtable I have Find,Replace and Replace All Controls to find,replace and replace all the text i the jtable.The Particular cel will be focussed for Find text.Particular cell will be focused and Replace the text with given text.</p>
<p>My problem is, at the time of replacing text with given text,im focusing the particular cell and using setValueAt() to replace.But the Check boxes in the 6th column are disturbed and Text is appearing in that column like YES or NO(For selected check box i used YES and Deselected checkbox i used NO strings).
Here is my sample code:``</p>
<pre><code>StringTokenizer st1 = new StringTokenizer(trstring1, "\t");//trstring1 is the Jtable string
for (i = 0; st1.hasMoreTokens(); i++) {
for (j = 1; j < 6; j++) {
rowstring = st1.nextToken();
if (rowstring.contains(findTxt)) {
rowstring = rowstring.replace(findTxt, replaceTxt);
str = trstring1.replaceFirst(findTxt, replaceTxt);
mProcessQuestionTestItemTable.setCellSelectionEnabled(true);
mProcessQuestionTestItemTable.changeSelection(i, j, false, false);
mProcessQuestionTestItemTable.requestFocus();
System.out.println("I:" + i);
System.out.println("J:" + j);
mProcessQuestionTestItemTable.setValueAt(rowstring, i, j);
}
}`
</code></pre>
http://stackoverflow.com/questions/1809968/iphone-like-jtable2iPhone-like JTable Nils Drews2009-11-27T17:51:45Z2009-11-27T22:23:34Z
<p>Hello,</p>
<p>i want to display a jtable with the feature, that if there is not enough space left on the screen the columns first start to shrink (and display less info) and then start to disappear. The info contained in the removed column for the selected row has to be displayed in a details view. </p>
<p>Is there a component in any swing component library (may it opensource or commercial) which offers these features?</p>
<p>Thanks in advance,</p>
<p>Nils</p>
http://stackoverflow.com/questions/1126538/putting-radio-group-into-jtable0putting radio group into JTablezeroin232009-07-14T16:26:37Z2009-11-26T10:00:02Z
<p>it seems JTable can only allow checkbox. how can i put a radio group into a cell on the JTable? </p>
http://stackoverflow.com/questions/1796683/why-it-doesnt-work-correctly-1why it doesn't work correctly?Johanna2009-11-25T12:42:15Z2009-11-25T20:21:16Z
<p>I have a table which in the first column ,I have student's name.such as "Esfandyar Talebi","Arash Nouri" and the number of rows can be changed.
and just 2 rows are filled from 4 rows.</p>
<p>the code that I have written:</p>
<pre><code> List<String> professorsName = new ArrayList<String>();
for(int i=0;i<InformationTable.getRowCount();i++){
professorsName.add((String) InformationTable.getValueAt(i, 0));
System.out.println(professorsName.toString());
}
</code></pre>
<p>but it will show these things in the console:</p>
<p>[Esfandyar Talebi]</p>
<p>[Esfandyar Talebi, Arash Nouri]</p>
<p>[Esfandyar Talebi, Arash Nouri, null]</p>
<p>[Esfandyar Talebi, Arash Nouri, null, null]</p>
<p>[Esfandyar Talebi, Arash Nouri, null, null, null]</p>
<p>[Esfandyar Talebi, Arash Nouri, null, null, null, null]</p>
<p>null</p>
http://stackoverflow.com/questions/1796972/java-swing-how-to-bind-a-jlabels-text-to-a-column-in-the-selected-row-of-a-jtab1Java Swing: How to bind a JLabel's text to a column in the selected row of a JTable?abracadabra2009-11-25T13:40:27Z2009-11-25T15:10:22Z
<p>I am using Netbeans and am trying to find a way for the IDE to auto-generate the code for me. I remember binding a JLabel's text to a column in the selected row of the JTable before, but in that case, the JTable's values were from an entity manager, and it was very easy. I was wondering if there is a way to do it even if the JTable is not tied to a database.</p>
<p>Also, how else could one do it? I was thinking of implementing a ListSelectionListener, and whenever an event got generated, just update the text of the label.</p>
http://stackoverflow.com/questions/1795936/how-can-i-get-the-text-in-a-jtable0How can I get the text in a JTable ?Johanna2009-11-25T10:14:15Z2009-11-25T10:22:21Z
<p>For example I have a Table that I want to get text that's in the first column and store it in an <code>ArrayList</code>.</p>
http://stackoverflow.com/questions/1793003/jtable-that-can-save-to-a-file0JTable that can save to a filetukushan2009-11-24T21:21:25Z2009-11-24T22:41:51Z
<p>Does anyone know of a JTable based Swing component OR code example that can save to a file? i.e: provides a menu item or button that when clicked on prompts the user for a file location and saves the table's contents to a file (CSV, XLS, TXT, or whatever).</p>
<p>The easy part is looping through the rows and saving to a file. But there also needs to be a UI component ON the table itself that allows the user to initiate the save.</p>
http://stackoverflow.com/questions/1788999/how-can-we-make-an-editable-table0how can we make an editable table?Johanna2009-11-24T09:41:52Z2009-11-24T10:27:47Z
<p>what should I do for editing all the cells of a Table? for example if in a one cell is written "abc", I want to change it to" def", how can I do that?</p>
http://stackoverflow.com/questions/1786726/jtable-wont-show-on-jpanel1JTable Won't Show On JPanelStudent012009-11-23T23:12:16Z2009-11-23T23:48:44Z
<p>Hi I have created a Jtable and can get it to show on my frame yet not on the JPanel I have ontop of my JFrame. I can't seem to change </p>
<pre>import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.*;
import java.util.ArrayList;
import java.util.Comparator;
import javax.swing.*;
import javax.swing.table.*;
public class Main
{
DefaultTableModel table_model;
String[][] addressData = new String[10][5];
JPanel panel;
JFrame frame;
JButton loadData;
int count,index,row =0;
String thisLine;
ArrayList People = new ArrayList();
<code>public Main()
{
//Creating JFrame and setting properties
frame = new JFrame();
frame.setResizable(false);
frame.setTitle("Address Book");
frame.setSize(800,600);
frame.setDefaultCloseOperation(frame.EXIT_ON_CLOSE);
//Creating JPanel and setting properties
panel = new JPanel();
panel.setLayout(null);
panel.setBackground(new Color(77,81,84));
//Setting the table and Scroll Bars
this.table_model = new DefaultTableModel(addressData, new String[]{"First Name", "Surname", "Home Number", "Mobile Number", "Address", "Postcode"});
JTable table = new JTable(this.table_model);
table.setBounds(130, 40, 200, 200);
panel.add(new JScrollPane(table, JScrollPane.VERTICAL_SCROLLBAR_ALWAYS, JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS));
//Load Data button, reading file in and adding data to ArrayList then Array of Arrays
loadData = new JButton("Load File");
loadData.setBounds(10, 10, 100, 20);
loadData.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
try
{
BufferedReader reader = new BufferedReader(new FileReader("file/address.buab"));
while ((thisLine = reader.readLine()) !=null)
{
if (row >= 4)
{
index++;
row = 0;
People.add(thisLine);
addressData[index][row] = People.get(count);
count++;
row++;
}
else
{
People.add(thisLine);
addressData[index][row] = People.get(count);
count++;
row++;
}
}
reader.close();
}
catch (IOException ex)
{
System.err.println("Input Exception, Check address.buab File");
}
}
});
panel.add(loadData);
//Auto sort on table fields
TableRowSorter<TableModel> sorter = new TableRowSorter<TableModel>(this.table_model);
sorter.setComparator(1, new Comparator<Integer>()
{
public int compare(Integer o1, Integer o2)
{
return o1.compareTo(o2);
}
public boolean equals(Object obj)
{
return obj.equals(this);
}
});
table.setRowSorter(sorter);
frame.getContentPane().add(panel);
frame.setVisible(true);
}
public static void main(String[] args)
{
new Main();
}
</code></pre>
<p>}
</p>
<p>Any ideas on how I might go about setting the table visible ontop of my JPanel</p>
http://stackoverflow.com/questions/1772764/how-do-you-add-a-border-to-a-row-in-a-jtable0How do you add a border to a row in a Jtable?Ryan Elkins2009-11-20T19:36:49Z2009-11-20T21:04:02Z
<p>I have a Jtable and I want to highlight a row by adding a border to the row. I have extended a <code>DefaultTableCellRenderer</code> and I figure the work needs to be done in the <code>getTableCellRendererComponent</code> method.</p>
<p>I'm guessing that since there doesn't seem to be a concept of a row that I need to create a custom border for the individual cells in the row. Something like a left side, top, and bottom for the first cell, a top and bottom for all the inner cells, and a top, bottom, and right side for the last cell in the row. I'm having problems finding out how to go about actually executing the thought process. I'm not sure how to use the <code>setBorder()</code> method or if that's even the direction I need to take.</p>
http://stackoverflow.com/questions/655325/how-do-you-remove-selected-rows-from-a-jtable0How do you remove selected rows from a JTable?Penchant2009-03-17T17:46:12Z2009-11-17T18:17:23Z
<p>I've tried this:</p>
<pre><code>public void removeSelectedFromTable(JTable from)
{
int[] rows = from.getSelectedRows();
TableModel tm= from.getModel();
while(rows.length>0)
{
((DefaultTableModel)tm).removeRow(from.convertRowIndexToModel(rows[0]));
rows = from.getSelectedRows();
}
from.clearSelection();
}
</code></pre>
<p>But, it sometimes leaves one still there. What can be the problem?</p>
http://stackoverflow.com/questions/1746813/provide-additional-behavior-when-editing-a-cell-in-jtable0Provide additional behavior when editing a cell in JTableChantz2009-11-17T05:36:11Z2009-11-17T07:25:54Z
<p>Hi SO'ers,</p>
<p>I am creating a app in Java. I need to provide additional behavior when editing of a cell in a JTable. So ideally this will happen when the cell loses focus after editing. Depending upon some post processing I might reset the value of the cell. I tried using a a Cell Editor but it is not giving me the desired behavior.</p>
<p>In the default JTable only when I Double click a cell it becomes editable. But in my implementation of CellEditor the cell becomes editable as soon as it comes into focus. </p>
<p>Here is the code for the My custom CellEditor,</p>
<pre><code>public class ParameterDefinitionEditor
extends AbstractCellEditor
implements TableCellEditor{
private JTable table;
private DefaultTableModel defaultTableModel;
public ParameterDefinitionEditor(DefaultTableModel defaultTableModel,
JTable table) {
super();
this.table = table;
this.defaultTableModel = defaultTableModel;
TableColumnModel columnModel = table.getColumnModel();
columnModel.getColumn(0).setCellEditor(this);
}
public Component getTableCellEditorComponent(JTable table,
Object value,
boolean isSelected,
int row,
int column) {
if (isSelected) {
// Do some processing.
}
((JTextField)component).setText((String)value);
// Return the configured component
return component;
}
public Object getCellEditorValue() {
return ((JTextField)component).getText();
}
}
</code></pre>
<p>Any help will be appreciated. Thanks.</p>
http://stackoverflow.com/questions/1732503/java-lang-arrayindexoutofboundsexception-0-0-attempting-to-populate-jtable0java.lang.ArrayIndexOutOfBoundsException: 0 >= 0 attempting to populate JTableChris Kaminski2009-11-13T23:17:18Z2009-11-13T23:57:58Z
<p>I'm subclassing JTable and using a DefaultTableModel to model my table data. The following class sets up the JTable, and adds one row to the model.</p>
<pre><code>import java.io.File;
import java.util.Iterator;
import java.util.Vector;
import javax.swing.JTable;
import javax.swing.table.DefaultTableModel;
import javax.swing.table.TableColumn;
public class SelectedFileTable extends JTable {
Vector<File> SelectedFiles = new Vector<File>();
DefaultTableModel Model = new DefaultTableModel();
TableColumn ColumnName = new TableColumn();
TableColumn ColumnSize = new TableColumn();
TableColumn ColumnRmIcon = new TableColumn();
ImageFilenameFilter Filter = new ImageFilenameFilter();
public SelectedFileTable() {
super();
this.setModel(Model);
ColumnName.setHeaderValue(new String("Name") );
ColumnName.setMinWidth(200);
ColumnSize.setHeaderValue(new String("Size") );
ColumnSize.setMinWidth(50);
ColumnSize.setMaxWidth(100);
ColumnRmIcon.setHeaderValue(new String("Remove?") );
ColumnRmIcon.setMaxWidth(100);
ColumnRmIcon.setResizable(false);
this.addColumn(ColumnName);
this.addColumn(ColumnSize);
this.addColumn(ColumnRmIcon);
this.setShowVerticalLines(false);
this.setShowHorizontalLines(true);
this.setAutoCreateColumnsFromModel(true);
this.addFile( new File("C:/temp/cfk.jpg") );
}
public void addFile(File file) {
System.out.println("FileTable adding: " + file.getName() );
if ( file.isDirectory() ) {
for ( File f : file.listFiles(Filter) ) {
this.addFile(f);
}
} else {
if ( Filter.accept(file) ) {
System.out.println("Accepting file; " + file.getName() );
SelectedFiles.add(file);
{
String name = file.getName();
Long size = new Long( file.length() );
String tempstr = new String("X");
System.out.println("RowItems before: " + Integer.toString(Model.getRowCount()) );
Model.addRow( new Object[] { name, size, tempstr } );
Model.fireTableDataChanged();
System.out.println("RowItems start : " + Integer.toString(Model.getRowCount()) );
}
System.out.println("Done Accepting file; " + file.getName() );
}
}
}
public Iterator<File> iterator() {
return SelectedFiles.iterator();
}
}
</code></pre>
<p>At display/visualization time, the following exception is thrown: </p>
<pre><code>Exception in thread "AWT-EventQueue-0" java.lang.ArrayIndexOutOfBoundsException: 0 >= 0
at java.util.Vector.elementAt(Vector.java:432)
at javax.swing.table.DefaultTableModel.getValueAt(DefaultTableModel.java:622)
at javax.swing.JTable.getValueAt(JTable.java:1903)
at javax.swing.JTable.prepareRenderer(JTable.java:3911)
at javax.swing.plaf.basic.BasicTableUI.paintCell(BasicTableUI.java:2072)
at javax.swing.plaf.basic.BasicTableUI.paintCells(BasicTableUI.java:1974)
at javax.swing.plaf.basic.BasicTableUI.paint(BasicTableUI.java:1897)
at javax.swing.plaf.ComponentUI.update(ComponentUI.java:142)
at javax.swing.JComponent.paintComponent(JComponent.java:743)
at javax.swing.JComponent.paint(JComponent.java:1006)
at javax.swing.JComponent.paintChildren(JComponent.java:843)
at javax.swing.JComponent.paint(JComponent.java:1015)
at javax.swing.JViewport.paint(JViewport.java:728)
at javax.swing.JComponent.paintChildren(JComponent.java:843)
at javax.swing.JComponent.paint(JComponent.java:1015)
at javax.swing.JComponent.paintChildren(JComponent.java:843)
at javax.swing.JComponent.paint(JComponent.java:1015)
at javax.swing.JComponent.paintChildren(JComponent.java:843)
at javax.swing.JComponent.paint(JComponent.java:1015)
at javax.swing.JComponent.paintChildren(JComponent.java:843)
at javax.swing.JComponent.paint(JComponent.java:1015)
at javax.swing.JComponent.paintChildren(JComponent.java:843)
at javax.swing.JComponent.paint(JComponent.java:1015)
at javax.swing.JLayeredPane.paint(JLayeredPane.java:559)
at javax.swing.JComponent.paintChildren(JComponent.java:843)
at javax.swing.JComponent.paintWithOffscreenBuffer(JComponent.java:4979)
at javax.swing.JComponent.paintDoubleBuffered(JComponent.java:4925)
at javax.swing.JComponent.paint(JComponent.java:996)
at java.awt.GraphicsCallback$PaintCallback.run(GraphicsCallback.java:21)
at sun.awt.SunGraphicsCallback.runOneComponent(SunGraphicsCallback.java:60)
at sun.awt.SunGraphicsCallback.runComponents(SunGraphicsCallback.java:97)
at java.awt.Container.paint(Container.java:1709)
at sun.awt.RepaintArea.paintComponent(RepaintArea.java:248)
at sun.awt.RepaintArea.paint(RepaintArea.java:224)
at sun.awt.windows.WComponentPeer.handleEvent(WComponentPeer.java:254)
at java.awt.Component.dispatchEventImpl(Component.java:4060)
at java.awt.Container.dispatchEventImpl(Container.java:2024)
at java.awt.Window.dispatchEventImpl(Window.java:1791)
at java.awt.Component.dispatchEvent(Component.java:3819)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
</code></pre>
<p>I'm ripping my hair out - I haven't been able to find the root cause of this immensely simple use case. </p>
http://stackoverflow.com/questions/1706749/swing-show-a-jlist-over-a-editable-jtable-to-select-entries-to-autocomplete-the2swing, show a JList over a editable jTable to select entries to autocomplete the textMerc2009-11-10T09:49:44Z2009-11-10T22:19:45Z
<p>Hello World !</p>
<p>I have a JTable with editable cells. Each Cell contains a CarretListener for quick validation of the entered text. But in one special cell you should be able to select entrys out of a list. The List is generated when you enter a text. The Programm serach in a list for entrys equal so the entered text, like google suggest. So far its all good. But i dont get it how to show the list at the right position. I tried the GlassPane but this doesn't work so well. I have problems to get the Cordinates of the cell and to show the JList.
Set the row height so show the whole list also dosn't work because i don't want to change the whole row.
Maybe there is a trick in the TableCellRenderer or so...?
I don't want a complete sourcecode or so, but a I need a push in the right direction.</p>
<p>Here is a pic of the programm and hwo it should look like: <a href="http://img198.imageshack.us/img198/3227/sosollsseinh.jpg" rel="nofollow">http://img198.imageshack.us/img198/3227/sosollsseinh.jpg</a>
Thanks for your attention</p>
<p>Marc</p>
http://stackoverflow.com/questions/1682079/java-jtable-adding-and-moving-columns0Java: JTable adding and moving columnsrhox2009-11-05T17:05:55Z2009-11-05T20:05:51Z
<p>Hi, im quite new in Java.
I want to add Columns in a JTable at a specified index.
For this i am using addColumn(..) and then move them with moveColumn(...), this works great at the first time, but when i add another column it kind of moves also the other(before added columns).</p>
<p>Do you have any suggestions?</p>
<p>this is the code i've written in the TableModel is:</p>
<pre><code> public void addColumn(Object columnName,
Vector columnData, JTable table) {
int moveTo = ((Integer)columnName);
boolean unselected = moveTo==-1;
super.addColumn(this.getColumnCount(), columnData);
if(!unselected) {//if a column was selected
table.moveColumn(this.getColumnCount()-1, moveTo+1);
}
}
</code></pre>
http://stackoverflow.com/questions/1582113/how-to-stop-cell-editing-in-jtextpane-cell-editor-of-jtable0how to stop cell editing in JTextPane ,cell editor of JTablemoon2009-10-17T12:36:55Z2009-11-04T01:00:01Z
<p>Hi everyone!!
I created JTable with JTextPane as cell editor.I want to stop cell editing and want to do some processing if I pressed enter key in JTextPane .And I also want to use single line in JTextPane. So, I add keylistener in JTextPane and call stopCellediting method. But it does not work, focus is in JTextPane and if I click other cell, the selected row and the selected column is not changed.So,please help me to use single line in JTextPane and to stop cell editing if I pressed enter like the default cell editor.Thanks a lot!!</p>
http://stackoverflow.com/questions/1661592/how-to-force-a-tooltip-to-update-on-a-tablecellrenderer-when-the-text-is-identic0How to force a tooltip to update on a TableCellRenderer, when the text is identical ?Gnoupi2009-11-02T14:24:56Z2009-11-02T15:14:36Z
<p>In a Java program, I am using a custom renderer for cells in a JTable.
On this renderer I set a tooltip, for which the content depends on the current cell.</p>
<p>When the values are different, the tooltip is updated, and will appear next to the mouse pointer, over the cell.</p>
<p>However, when the text for this tooltip is identical when changing cell (it happens that a few cells have the same text for tooltip), the TooltipManager considers that the tooltip hasn't changed, and it leaves the previous one, on the previous position.</p>
<p>Does someone knows how to make it so that the tooltip would be updated on each cell, even with identical values? </p>
http://stackoverflow.com/questions/1652942/can-a-jtable-save-data-whenever-a-cell-loses-focus0Can a Jtable save data whenever a cell loses focus?Electrons_Ahoy2009-10-31T00:23:50Z2009-10-31T03:11:24Z
<p>The high level: I have a JTable that the user can use to edit data.</p>
<p>Whenever the user presses Enter or Tab to finish editing, the data is saved (I'm asusming that "saved" really means "the TableModel's setValueAt() method is called".)</p>
<p>If the user leaves the cell in any other way after making an edit, the new data is not saved and the value stays the way it was. So, for example, if the user changes a value and then clicks on some other widget on the screen, the change doesn't "stick."</p>
<p>I believe that this is the default behavior for a JTable full of Strings, yes?</p>
<p>For a variety of reasons, the desired behavior is for the cell to save any and all edits whenever the user leaves the cell. What's the best/right way to get Swing to do this?</p>
http://stackoverflow.com/questions/1631788/creating-and-using-multiple-filters-searches-using-jtable-or-glazedlists0Creating and using Multiple Filters/Searches using JTable or GlazedListstwodayslate2009-10-27T15:52:49Z2009-10-28T02:42:14Z
<p>I looked up how to use multiple filters on here with a regular table and the answers all pointed to <a href="http://publicobject.com/glazedlists/" rel="nofollow"><code>GlazedLists</code></a>. However, the answers didn't specify how to use it. I was able to get one filter to work but do not know how to get more than one.
For one filter I used:</p>
<pre><code> // nameE is a BasicEventList containing classes (name) which
// contain the table values
TextFilterList filtered = new TextFilterList(nameE);
JTextField filterEdit = filtered.getFilterEdit();
// Inside the table value class (name) there is a filter for myName
public void getFilterStrings(List baseList) {
baseList.add(myName);
}
</code></pre>
<p>Duplicating the code and creating another <a href="http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/JTextField.html" rel="nofollow"><code>JTextField</code></a> does not work. I looked this problem up and it appears <a href="http://publicobject.com/glazedlists/glazedlists-1.7.0/api/ca/odell/glazedlists/matchers/CompositeMatcherEditor.html" rel="nofollow"><code>CompositeMatcherEditor</code></a> may work. The problem is I do not know how to implement this. </p>
<p>Also, I am using Eclipse. I downloaded <a href="http://publicobject.com/glazedlists/" rel="nofollow"><code>GlazedLists</code></a> 1.8.0 and dropped it into Eclipse. However, I can't use it. I have red squares all over (except for the source folder)! I even added the jar file. </p>
<p>I hope I have explained myself correctly. Please let me know if I need to expand.</p>
<p>My Pastebin: <a href="http://pastebin.org/47044" rel="nofollow">Name</a>, <a href="http://pastebin.org/47045" rel="nofollow">Browser</a>, <a href="http://pastebin.org/47046" rel="nofollow">TableFormat</a>, <a href="http://pastebin.org/47047" rel="nofollow">TableModel</a></p>
http://stackoverflow.com/questions/1624679/jms-queue-to-jtable-update-now-getting-exception-after-changes0JMS Queue to JTable Update [Now getting exception after changes]UK2009-10-26T13:07:58Z2009-10-27T18:45:23Z
<p>I am writing my own JMS Browser and I am struck at the JTable update of Messages from JMS servers. <del>I have tried <code>AbstractTableModel</code> <code>TableModelListener</code> to make Jtable refresh when the data added into LinkedList.</del> This below logis works , but its not updating realtime , means I would like to display each and every row added to Jtable immediately when its added from QueueBrowser to LinkedList.</p>
<p>I have updated the code as per the suggestions below. </p>
<p>Am I doing something wrong? can anyone help me ?</p>
<pre><code>QueueBrowser qb = session.createBrowser(q);
MsgTable mt = (MsgTable) queueTable.getModel();
mt.load(qb.getEnumeration(),mt);
qb.close();
class MsgTable extends AbstractTableModel implements TableModelListener{
final String[] columnNames = { "#", "Timestamp", "Type", "Mode",
"Priority" };
public void setRowSize(){
}
LinkedList queueList = new LinkedList();
public int getRowCount() { if (queueList == null) { return 0; } else { return queueList.size();}}
public int getColumnCount() { return columnNames.length;}
public String getColumnName(int column) {return columnNames[column];}
public Object getValueAt(int row, int column) {
if(queueList == null){
return null;
}
Message m = (Message) queueList.get(row);
...
}
void load(Enumeration e,MsgTable mt) {
mt.addTableModelListener(this);
while(e.hasMoreElements()){
queueList.add(e.nextElement());
}
fireTableDataChanged();
}
Message getMessageAtRow(int row) {
if (queueList == null)
return null;
return ((Message) queueList.get(row));
}
@Override
public void tableChanged(TableModelEvent arg0) {
// TODO Auto-generated method stub
fireTableDataChanged();
}
}
</code></pre>
<p>and getting this exception. </p>
<pre><code>Exception in thread "AWT-EventQueue-0" java.lang.StackOverflowError at javax.swing.table.AbstractTableModel.fireTableRowsInserted(Unknown Source)
</code></pre>
<p>Is it wrong ?</p>
http://stackoverflow.com/questions/591610/jtable-sorting-rows-in-java-1-51JTable sorting rows in Java 1.5Miles D2009-02-26T17:40:17Z2009-10-25T22:18:56Z
<p>Is there a simple way to sort rows in a JTable with Java 1.5 (<code>setAutoCreateRowSorter</code> and <code>TableRowSorter</code> appear to be Java 1.6 features)?</p>
http://stackoverflow.com/questions/1155137/how-to-keep-a-single-column-from-being-reordered-in-a-jtable3How to keep a single column from being reordered in a JTable?Bearddo2009-07-20T18:31:28Z2009-10-25T07:25:59Z
<p>I have a <code>JTable</code> and I need to be able to reorder the columns. However I want the first column to not be able to be re-ordered. I used the following to enable reordering:</p>
<pre><code>table.getTableHeader().setReorderingAllowed(true);
</code></pre>
<p>The columns can now be reordered including the first column which I don't want. Is there any way to lock the first column? </p>
<p>I have seen some solutions that use two tables with the first column being in a separate table, but maybe there's a better/simpler way.</p>
http://stackoverflow.com/questions/1612871/adding-a-jlist-to-a-table-and-adding-the-table-to-a-scroll-pane0adding a JList to a table and adding the table to a scroll paneKaren2009-10-23T11:38:34Z2009-10-23T16:14:43Z
<p>I have created a JList and I want to add it to the table and then add the table to the scroll pane so that both of them will be contained in the scroll pane.</p>
<pre><code>import model.*;
import java.awt. *;
import java.text.*;
import javax.swing.*;
import javax.swing.table.TableColumn;
public class ScrollPanel extends JPanel implements View
{
private Prison prison;
private String[] cells = new String[20];
private JList list = new JList(cells);
public ScrollPanel(Prison prison)
{
this.prison = prison;
prison.attach(this);
setup();
build(prison);
}
public void setup()
{
}
public void build(Prison prison)
{
int rows = 20;
int columns = 2;
for (int i = 0; i < 20; i++)
{
cells[i] = prison.cells().get(i).id();
}
JTable table = new JTable(rows, columns);
table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
TableColumn column = null;
column = table.getColumnModel().getColumn(0);
column.setPreferredWidth(91);
column = table.getColumnModel().getColumn(1);
column.setPreferredWidth(91);
table.add(list);
JScrollPane scrollPane = new JScrollPane(table);
scrollPane.setPreferredSize(new Dimension(220, 150));
add(scrollPane);
}
public void update()
{ }
}
</code></pre>
<p>This is how my program looks when I did the code I pasted above, which is adding the list to the table.
<img src="http://img21.imageshack.us/img21/3237/11834317.jpg" alt="alt text" />
When I added the table to the list and then to the scroll pane, this is how it looked. How do I add them both to the scroll pane with both of them showing?</p>
<p><img src="http://img27.imageshack.us/img27/3678/94687555.jpg" alt="alt text" /> </p>
<p>This is what it should look like..</p>
<p><img src="http://img21.imageshack.us/img21/1343/90528093.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/1613692/empty-model-empty-table0Empty model, empty tableLeandro2009-10-23T14:04:44Z2009-10-23T15:54:47Z
<p>I have a JTable as a viewer of a model that I have created. I can insert and remove columns and rows from this model. The problem is that when my model reaches size 0, i.e., no data in the model, the table continuouing showing the header for the last two columns.</p>
<p>All the best,
Leandro Lima </p>