Jtable And Updating Variables In Swing

Jan 21, 2015

I am working on a project in Eclipse, and it is my first time working with swing.I have the GUI setup the way that I like it, my hang-up is how to "update" the variables in the code as they are changed.The basics of the code is that I have several different String[] that will show up in a Jtable depending upon the input of the lists I have in the GUI.

in essence,
if list1==2 && list2==3
returnedarray = array1

I would like to have the returnedarray/Jtable be updated live as the lists are manipulated. So as soon as I change my list selections to...
list1==1 && list2==3

the code would shift to the proper array...
returnedarray = array2

If making the output update live isn't a possibility how would I code a button to update the input/output giving me the proper String[]?

View Replies


ADVERTISEMENT

Auto Updating JTable From Database

Feb 10, 2015

I'm doing an application which needs a JTable with data from an existing database. I need the table to periodically (I plan to use a Timer) reflect the changes made to the DB (inserting new rows, deleting or updating existing rows) without making the dirty approach of clearing the whole JTable and refilling it again, which is not nice. I need to just add/modify/delete the needed rows, not the whole table.

View Replies View Related

JButton Event Requires Code To Finish Before Updating JTable

Aug 5, 2013

I have a JFrame with a button called "Start".  The code behind the "Start" button triggers a function (startwork() ) that traverses through log files and then inserts rows into my JTable.  If I call the startwork() function from the Start button action performed event, then when it inserts the rows to the JTable it is not immediately shown...

The code has to finish before the JTable is refreshed.  However, if I run the startwork() function as soon as the JFrame is displayed (from the main() function) then I can see the Jtable being populated dynamically as it is inserting the rows.
 
How to allow the user to click on the START button and yet behave correctly to where the JTable is updated properly so that I can see the rows being inserted as it progresses. 

View Replies View Related

Swing/AWT/SWT :: Why ProgressBar Not Updating

Aug 14, 2014

Why the Progress Bar is not Working in Second attempt?When i am Invoking Below Method on actionPerformed at first attempt its Working Fine but After that Its Not Working at all....

void initWait() {
go.setEnabled(false);
browse.setEnabled(false);
choice.setEnabled(false);
wait.setVisible(true);
wait.setMinimum(0);
wait.setMaximum(Info.getMp3().length);
System.out.println(Info.getMp3().length);
wait.setStringPainted(true);

[code]...

for a better Understand see this Mp3Arranger.jar or see the Whole Project SourceCode

View Replies View Related

Swing/AWT/SWT :: JLabel Not Updating Its Text Dynamically

Nov 18, 2014

why JLabel setText method is not setting up the text dynamically even though i am calling repaint() once i set the text? Code snippet is below

Locale currentLocale = new Locale(panel.getCountryLocal(), panel.getCountry());
ResourceBundle messages = ResourceBundle.getBundle(Constants.messageBundle, currentLocale);
messages = Panel.getMessages();
String displayString = messages.getString("101022");

[code]....

View Replies View Related

Swing/AWT/SWT :: Controls Not Updating Until Method Is Completely Finished

Dec 30, 2014

I have this method that does several RegEx queries along with a lot of searching and replacing of text, and each regex search / replace takes some time and a total of maybe two minutes for all of them to finish up. So I added a ProgressBar to my JavaFX form and I added code after each step to simply use the ProgressBar.setProgress method by a factor of 10% each step ... so the code would resemble something like this:

do a regex query
if it finds things then do a replaceAll method on the string being searched
ProgressBar.setProgress(.1)

do another RegexQuery
If it finds stuff, so a replaceAll method
ProgressBar.setProgress(.2)

etc...

What is happening is that the progress bar will not actually paint any progress until AFTER the entire method is done executing. So from the users perspective, they click on the button and the program appears to freeze until its all done with that method at which point it instantly changes the progress bar to the last value I set ...

So the desired effect is simply not working, and I don't know why.

I tried changing (as in replacing the progress bar with a different control) the progress bar value settings with updating text in a text box on the form, and even that didn't display any of the text messages until AFTER the procedure was done executing at which point, all of the text logs appeared at one time instead of gradually adding text to the box in increments as the method executed.So it FEELS like any time a method is actually running, the JavaFX scene simply freezes until the method is done running. And it doesn't matter if I change the progress bars value directly or put it into its own method which gets called throughout the execution of the regex method ... either way, nothing actually happens on the form until the software is done executing all of the procedures called and then it comes back to a "resting" state...

I tried simplifying it by making a single method that does two things ... it updates the progress bar and then it waits for 1 second. Then it increments a variable then updates the progress bar, then waits a second, thinking to myself that 1 second pause would give it time to update the progress bars value but even that little method would not work.

Here is the test method I created:

private void testProgressBar() {
for(int x = 0;x<10;x++) {
progressBar.setProgressBar(.1*(x+1));
try {
sleep(1000);
}
catch(InterruptedException e) {
e.printStackTrace();
}
}
}

Even that little piece of code will not actually show any changes in the progress bar until after its done looping at which point, the progress bar is filled to 100%, but I never see the first 9 changes in the progress bar within that for next loop.

View Replies View Related

Swing/AWT/SWT :: Updating DefaultTable Model - Placing Text?

Jul 2, 2014

I have been going in circles trying to update a JTable. For now I just need to take input from a textfield after clicking on a JButton and have that text be placed in the JTable. LeftPanel listens, while RightPanel holds the table. Here is what I have so far:

package reminder.views;

import java.awt.Dimension;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;

public class LeftPanel extends JPanel {

]Code] ....

View Replies View Related

Java Swing Project - Updating Labels And Other Stuff

May 28, 2014

I wrote a simple random spelling game for a class project, was never able to get the labels to update when they should. I have tried .updateUI, .paintImmediately followed by .revalidate and by .repaint. Nothing seems to be working.

What the game does is show a random word for about 10 seconds, disappear and they user is to spell that word, you have 3 tries then will start over. The "brains" of the game work just fine, it is the labels updating with new text when they should doesn't seem to be working. There is 4 classes but the below is the "Main" that has the problems. Also have a null exception problem with the timer.stop(); not sure why. I am still pretty new to java.

Public class SpellMe extends JFrame {
// variables
JPanel mainPanel, secondPanel, thirdPanel;
JLabel mainLabel, wordLabel;
String spWord, sp;
JTextArea guess;

[Xode] .....

View Replies View Related

Swing/AWT/SWT :: Retrieving Variables From Another Class?

May 19, 2014

This program should create a GUI that has 5 classes together on a grid layout. The problem that I am having is that the user input class has the input for kwh, hours, and gallons. I am having problems getting that information from the user input class to the totals class.

user input class:

package applianceutilitycalculator;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Scanner;
import javax.swing.*;

[code].....

The totals class should take the info from the kwh hours and gallons and do the math to get a total and display it in a JTextField(?).

View Replies View Related

Swing/AWT/SWT :: How To Share Member Variables

Jul 10, 2014

I can understand basic concepts such as OOP, Threads, Events and GUI, I've coded a little but I've always had this bothering me:

Explaining by example:

public class X{
int x;
String y;
public static void main(String[] args){
x = 10;
y = "hello ";

[Code] ....

Okay, i'm pretty certain that code won't work, but I just want to show you conceptually, not actually care whether the code works or not. In case I wanted to get that code to work I should have probably used a Swing application to get a KeyListener in the first place, but I guess I know that, and if this was working, what would happen theoretically is, the code would run, initialize x to 10, and y to hello, then when a key is pressed, it will update x to 11 and y to hello world, I'm pretty sure that's what happens.

In this case, I used a inner class to update it's parent's members, I've seen this done before and I can vouch for the fact that it's a legitimate way to code a class.

Now in this example:

class X{
int x;
String y;
public int getX(){ return x; }
public String getY(){ return y; }

[Code] ....

So in this overly complicated example, i'm trying to share class X with both class Y and class Z, just that how to share the members of class X with the different classes without making a new instance of X. In the previous example, I could access the parent's members because the inner class was implicitly capable of accessing the parent's members. However in this case, If "Y" starts an instance of X, then how do I access it? because it's a side by side class not a hierarchy for me to access the parent's members.

View Replies View Related

Swing/AWT/SWT :: JTable With Fixed Row

Nov 9, 2008

My JTable has a row, row number 0, which I always want to be at the top.I tried the following two approaches, both without success:

1- Use a custom table cell renderer for the header, and create a header of two rows. the second row is my JTextField.

Problem: I cannot get the JTextField to function properly. (I've seen examples with a checkbox in the header, but that one just reacts to a click somewhere on the header, my textfield must be editable).

2- Use the first row of the table. This works quite nice. However, I must prevent row 0 to be re-ordered when sorting the table.

I was thinking to add a prefix (either something like "___" or "zzz" depending on current sorting mode), but I do not know which methods to adjust for this exaclty.

Another approach would be to have N textfields above the JTable in some layout (or two JTable's on top of each other).

However, Then I would need to react to the re-ordering and re-sizing of all columns as well, which does not seem easy to me.

View Replies View Related

Swing/AWT/SWT :: Using JList Instead Of JTable?

Apr 18, 2014

Can I use Jlist instead of Jtable for showing database table data (select * from employee) in my code?

View Replies View Related

Swing/AWT/SWT :: Can't Select The Very Last Row In A Jtable

Mar 26, 2015

I have encountered a very tricky spot in a project that i am working on. I must have a JTable to programmatically select the very last row in an AbstractTableModel. I have tried every thing but nothing works so far.

The problem is is that the JTable only scrolls down to the second last table row in the model? What am i missing?

//Show the very last row in a tablemodel object using the method updateTableRows
//after an "insert action event" occurred
public void updateViewMode(String name,
java.util.List<NetworkSwitch> list,
boolean flag) {
CableTableModel model = cableTable.getCableModel();

[code]....

What happens is that the only row that gets selected is the second last row of the total rows iny AbstractTableModel object, "CableTableModel"

What am i missing?

View Replies View Related

Swing/AWT/SWT :: JTable Not Getting Updated

Nov 17, 2014

I am preparing a small solution. Below is how the functionality works.

1. Login Screen
2. Successful Login will take to a MDI Form
3. Click the menu, a JInternalFrame will open in the JDestopPane.
4. JInternalFrame has a JTable.
5. JInternalFrame has a JButton available for adding new data.
6. When JButton is clicked, a new JInternalFrame is popped up with some JTextField and JButton to save the data.
7. After saving the data (after insert query), a JDialog is opened to upload Logo (update query for BLOB), There are two buttons in the JDialog, one is for uploading the image, another one is uploading it later.
8. The logo is displayed in the JDialog and if the JButton, for upload is pressed, update the database and reload the JTable in the JInternalFrame is called.

My challenge is in point 8. The function is called properly, but the table is not getting refreshed.

JButton in JDialog for uploading the Logo
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
JOptionPane.showMessageDialog(this, "Image Uploaded Successfully");
companyConfig cc = new companyConfig();
//cc.reloadTable();
cc.updateTable();
this.dispose();

[code]....

View Replies View Related

Swing/AWT/SWT :: JTable Sum Of A Column

Feb 9, 2015

I've been creating a jTable where I can add / edit /delete new entries. Now i have 2 Questions :

1) My column 0 is filled with the row-number. I created a variable and with each "add" it adds +1 to the variable. That works, but as soon as i delete 1 row there is a gap ( 1..2..4..5..).

My question: Is there another way then mine to handle this?

2) The table is/should be working as some kind of database. The user is able to add Information (height, width,...). Now I want to sum the entries of 1 column (length,...). But as they´re objects I didn´t find a way.

My question: How can I sum the entries of 1 column of a table?

View Replies View Related

Swing/AWT/SWT :: JTable Instead Of JTextArea

May 3, 2015

i have this code when i selected a node it display the attribut and value of it in JTextArea but i want it into table :

public void valueChanged( TreeSelectionEvent event )
{
if( event.getSource() == jtree ){
{
FramePrincipale.getExplorePanelll().setText(null);
TreePath path = jtree.getSelectionPath();
String a = changeString(path);
Hashtable env1 = System.getProperties();
env1.put(Context.INITIAL_CONTEXT_FACTORY,
"com.sun.jndi.ldap.LdapCtxFactory");
env1.put(Context.PROVIDER_URL, "ldap://localhost:11389/");

[code]....

View Replies View Related

Swing/AWT/SWT :: How To Get Data From JTextField Over To JTable

Jun 20, 2014

I am trying to get the data entered in a JTextField into a JTable but not clear on how. The LeftPanel is where the button is located and the RightPanel is where the JTable is. I want the actionPerformed to update the row of the JTable but I can't figure out how. There is another class that controls the GUI but did not think it was necessary to include. Also, I am aware that I am getting an error at the addRow line, can't seem to alleviate it.

public class LeftPanel extends JPanel {

private static final long serialVersionUID = -2311952438693382407L;
private RightPanel rPanel;
public LeftPanel(){
Dimension size = getPreferredSize();
size.width = 250;
setPreferredSize(size);

[code]....

View Replies View Related

Swing/AWT/SWT :: Getting A Row Of Names From The First Column Of JTable?

Feb 9, 2014

I have a JTable with the model " Names " , " Quantity " and " Unit " .

I'm coding a program where you get the ingredients names.

So i need to get the whole row of one column and String it all up together,because i need to store it in mySql and i have already set it all as String.

how i can do this ?

My code are as follows :

JTable Code:

DefaultTableModel model = (DefaultTableModel)table.getModel();
if(!txtQty.getText().trim().equals("")){
model.addRow(new Object[]{ingCB.getSelectedItem().toString(),txtQty.getText(),unitCB.getSelectedItem().toString()});
}else{
JOptionPane.showMessageDialog(null,"*Quantity field left blank");
}

Getting the values and for storing :

for(int i = 1; i<= i ; i++){
ingredients = table.getName();
}

This is for loop is wrong and it does not work because i have a constructor to take in Ingredients but because it is inside the loop, it cannot take it in.

View Replies View Related

Swing/AWT/SWT :: Refreshing JTable From Database

May 21, 2014

I want to add a Refresh button to my frame to refresh the data from the database, but I'm not sure how to refresh the data in the jtable. The constructor below initially creates the table and displays the data. Should my button destroy/create the JPanel all over, or is there a single method within the TableModel that will redisplay the data?

class TablePanel extends JPanel {
private Connection con;
private JTable table;
TablePanel() {
try {

[code].....

View Replies View Related

Swing/AWT/SWT :: How To Make A Row Of JTable Not Editable

Feb 8, 2014

When I click on a row in a JTable, I want to have a row appear above it. For now I'm just making that row be a duplicate of the row I clicked on, but eventually this will be some sort of previous history of that row, so as you are editing the row you actually clicked on you can look directly above it and see what the data used to look like.

I"m not having any problem creating the row, nor am I having an issue getting it positioned correctly. What I want to do with this added row is made it so you can't edit the entire row, and also really make this row stand out. I'd like to say make this row stand out or "POP" so to speak so there is no confusing what it is. I'd almost like to make it look like the row header or even better... Most of what I am seeing are ways to make particular cells uneditable, so I think my backup plan is that, but Is there a good way to do what I described?

View Replies View Related

Swing/AWT/SWT :: SQL Server Table In JTable

May 29, 2014

I am attempting to show a GUI that will show records from a SQL Server table. That part I have done. However, I need to allow the user to be able to edit the Approval field of the table when he/she views it. Following is my code:

package manual_checks;

import java.sql.*;
import java.util.*;
import javax.swing.*;
import javax.swing.table.TableColumn;
import java.awt.Font;
import javax.swing.event.ListSelectionListener;

[code]....

View Replies View Related

Swing/AWT/SWT :: How To Get Double Value Into JTable Cell

May 29, 2014

My latest issue was that I wanted to only get a double value into a JTable Cell.

So first I Overrode the getCellEditor(int row,int col) method of my JTable, so if I was in a cell i knew I needed a double value I returned my Editor.

My editor filters out anything but numbers. I also check to make sure we get one and only one decimal point.

Other solutions Ive seen use keyboard Listeners, but to me that doesn't work. What if the user cuts and pastes data? My solution handles that as well.

It doesn't handle if they try to cut and paste something like 1234abcd.bob.123.23 , this would result in 1234..123.23 pasted in. I'll handle faulty values on the getValue method of my AbstractTable, but as long as the user is using mostly valid data this works well.

public TableCellEditor getCellEditor(int row, int col) {
if (row==TheRowWant && col==TheColumnI want) {
return (new DefaultCellEditor(createDoubleTextField()));
}
}
private JTextField createDoubleTextField() {
final JTextField field = new JTextField();

[Code] .....

View Replies View Related

Swing/AWT/SWT :: Finding Strings In A JTable

Jan 31, 2015

I am having a problem finding string objects in a jTable. I use setValueAt() to write string variables into a jTable.

I can then use getValueAt() to search to find any of those strings. All works fine until I edit an entry in the table. Then I can never find that string again.

In fact, if I just click in the cell type a character, then delete that character, something changes. The contents of the cell look the same but the search for it doesn't find it.

For example if I have a string "xyz" that was written in a cell. If I set the search value, "a=xyz", and "b=getValueAt(some cell)".

Then at the compare:

if(a==b) I can hover over a and b and I see that;
a = (java.lang.String) xyz

and

b = (java.lang.String) xyz

[note I am using NetBeans to do this]

after the compare, the true path is taken .

If I then click in the cell then click out and try the same compare, everything is exactly the same including what gets reported when I hover. But the false path is taken at the "if".

View Replies View Related

Swing/AWT/SWT :: How To Remove Jtable Border

Apr 26, 2015

How can I remove the light blue border? I tried everything that I know [URL]

View Replies View Related

Swing/AWT/SWT :: Programmatically Scroll Up Or Down Jtable

Apr 17, 2014

I'm having serious issues right now with a JTable inside a JScrollPane.i have some methods that returns different indexes (rows) that i select programatically in a JTable and the problem is that sometimes it goes beyond of what i can see, like, the row gets selected but the scrollbar won't follow up.

i've searched up in google and saw several different methods but those were extremely complex and for stuff i don't need.the simplest solution i found is this:

tInfo.setRowSelectionInterval(searchIndexes.get(currentIndex), searchIndexes.get(currentIndex));
tInfo.scrollRectToVisible(tInfo.getCellRect(currentIndex, 1, true));

but it just doesn't do anything.My table (tInfo) has only two columns so no horizontal bars, just vertical. What can i do to align the scrollbar with the currently selected row in my table? :C

Found a solution using scrollPane.getVerticalScrollBar().setValue();in another thread, i didn't even notice there were like 3 more threads about the same, just different kind of code used in each.

View Replies View Related

Swing/AWT/SWT :: SetFont Of JTable Editor

Mar 18, 2015

I am trying to set the font of the editor as the same for the renderer of JTable. I am just a bit confused on how to do this. I don't want any code but maybe a walkthrough on what to do. Here is my abstract table model ....

public class ProductTableModel extends AbstractTableModel {
private ArrayList <Product> prodList = new ArrayList <Product> ();
private String [] columnNames = {"ID", "Description", "Inventory", "Cost", "Order Quantity"};
public ProductTableModel (ArrayList <Product> productList) {
this.prodList = productList;

[Code] .....

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved