gpt4 book ai didi

java - 更新java表

转载 作者:行者123 更新时间:2023-12-01 22:40:58 25 4
gpt4 key购买 nike

我有一个计时器类更新我的表,但我发现影响更改的唯一方法是使用此代码。它本质上是一个休息时间应用程序。我正在使用 ini4j 读取网络上的 ini 文件。它确实有效,但它给我正在做的其他事情带来了速度问题。在当前设置下,它或多或少正确地显示了时间,但当我添加更多人时,它开始滞后。如果你的答案是学习 jTables 那不会有帮助哈哈。我无法使用 jtables 和 fireupdate 更改来使其工作。

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.File;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.TimeZone;

import javax.swing.JLabel;
import javax.swing.JTable;
import javax.swing.SwingUtilities;
import javax.swing.Timer;

import main.Break;

import org.ini4j.InvalidFileFormatException;
import org.ini4j.Wini;

public class TableUpdate extends JLabel implements ActionListener {

/**
*
*/
private static final long serialVersionUID = 4357754555235469274L;
private volatile static boolean running = true;
SimpleDateFormat UTC = new SimpleDateFormat("HH:mm:ss");
Timer breaktimer = new Timer(1000, this);
public static long now = System.currentTimeMillis();

final static String local = ConfigIni.location();
final static File FILENAME = new File(local+"\\master.ini");

@Override
public void actionPerformed(ActionEvent arg0) {
Runnable runnable = new Runnable() {
public void run() {

tableupdate();
}};
SwingUtilities.invokeLater(runnable);
}

public void tableupdate() {
UTC.setTimeZone(TimeZone.getTimeZone("UTC"));
Wini ini = null;
try {
ini = new Wini(FILENAME);
} catch (InvalidFileFormatException e1) {
e1.printStackTrace();
} catch (IOException e1) {
e1.printStackTrace();
}
String number = ini.get("analysts", "number");

if (number.equals("8")) {
Break.jTable1.setModel(new javax.swing.table.DefaultTableModel(
new Object [][] {
{AnalystIni.one(), StartIni.one(), BreakIni.one(), TypeIni.one()},
{AnalystIni.two(), StartIni.two(), BreakIni.two(), TypeIni.two()},
{AnalystIni.three(), StartIni.three(), BreakIni.three(), TypeIni.three()},
{AnalystIni.four(), StartIni.four(), BreakIni.four(), TypeIni.four()},
{AnalystIni.five(), StartIni.five(), BreakIni.five(), TypeIni.five()},
{AnalystIni.six(), StartIni.six(), BreakIni.six(), TypeIni.six()},
{AnalystIni.seven(), StartIni.seven(), BreakIni.seven(), TypeIni.seven()},
{AnalystIni.eight(), StartIni.eight(), BreakIni.eight(), TypeIni.eight()},
},
new String [] {
"Analyst", "Start Time", "Timer", "Status"
}
));


}
}

public void start() {

running = true;
breaktimer.start();
}

public void stop() {

running = false;
}

public static void main(String[] args) {

java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
TableUpdate jtl = new TableUpdate();
jtl.start();
}
});
}
}

这是我的表的代码

try {
jTable1.setModel(new javax.swing.table.DefaultTableModel(

new Object [][] {
{AnalystIni.one(), StartIni.one(), BreakIni.one(), TypeIni.one()},
{AnalystIni.two(), StartIni.two(), BreakIni.two(), TypeIni.two()},
{AnalystIni.three(), StartIni.three(), BreakIni.three(), TypeIni.three()},
{AnalystIni.four(), StartIni.four(), BreakIni.four(), TypeIni.four()},
{AnalystIni.five(), StartIni.five(), BreakIni.five(), TypeIni.five()},
{AnalystIni.six(), StartIni.six(), BreakIni.six(), TypeIni.six()},
{AnalystIni.seven(), StartIni.seven(), BreakIni.seven(), TypeIni.seven()},
{AnalystIni.eight(), StartIni.eight(), BreakIni.eight(), TypeIni.eight()}
},
new String [] {
"Analyst", "Time Started", "Timer", "Status"
}
));
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
JTableHeader header = jTable1.getTableHeader();
header.setBackground(SettingsIni.jtable1h());
header.setForeground(SettingsIni.jtable1ht());
jTable1.setBackground(SettingsIni.jtable1());
jTable1.setForeground(SettingsIni.jtable1t());
jTable1.setOpaque(false);
jScrollPane1.setViewportView(jTable1);
jScrollPane1.setOpaque(false);
jTable1.setFocusable(false);
//jScrollPane1.setBorder(BorderFactory.createMatteBorder(0,1,0,0,Color.black));
jScrollPane1.setBorder(BorderFactory.createEmptyBorder(0,0,0,0));

jScrollPane1.getViewport().setOpaque(false);
final Color jcolor1 = new Color(0, true);
jScrollPane1.getViewport().setBackground(jcolor1);

getRootPane().setBorder(BorderFactory.createEmptyBorder(0,0,0,0));//removed border

我已将此代码添加到带有表的类中。

@Override
public void tableChanged(TableModelEvent e) {
int row = e.getFirstRow();
int column = e.getColumn();
TableModel model = (TableModel)e.getSource();
String columnName = model.getColumnName(column);
Object data = model.getValueAt(row, column);
}

我正在考虑将其添加到我的计时器中,但仍然感觉我错过了一些东西。

BreakTimev21.jTable1.tableChanged(new TableModelEvent(BreakTimev21.jTable1.getModel()));

从 camickr 我在我的 tableupdate 类中尝试了这个。仍然没有帮助,它确实更新了,但有点小故障。我确实记得使用jTable1.setAutoCreateColumnsFromModel(false);

Object [][] data = {
{a1, StartIni2.one(), BreakIni2.one(), TypeIni2.one()},
{a2, StartIni2.two(), BreakIni2.two(), TypeIni2.two()},
{a3, StartIni2.three(), BreakIni2.three(), TypeIni2.three()},
{a4, StartIni2.four(), BreakIni2.four(), TypeIni2.four()},
{a5, StartIni2.five(), BreakIni2.five(), TypeIni2.five()},
{a6, StartIni2.six(), BreakIni2.six(), TypeIni2.six()},
{a7, StartIni2.seven(), BreakIni2.seven(), TypeIni2.seven()},
{a8, StartIni2.eight(), BreakIni2.eight(), TypeIni2.eight()},
};
String [] columnNames = {
"Analyst", "Start Time", "Timer", "Status"
};

TableModel model = BreakTimev21.jTable1.getModel();
((DefaultTableModel) model).setDataVector(data, columnNames);

我停止使用 ini4j 来读取 tableupdate 部分,只使用 java 属性,这对速度有很大帮助,但仍然没有解决。 setDataVector 的工作方式与 BreakTimev21.jTable1.setValueAt(StartIni2.one(), 0, 1); StartIni2 现在使用 java 属性而不是 ini4j。

最佳答案

您不应该为计时器中的每次更新更改表模型。相反,您应该通过子类化 AbstractTableModel 来实现您自己的模型。 。每次在计时器中更新数据时,您仅更改已更改的模型值,并使用 AbstractTableModel 的 fire*() 方法让 Swing 知道您做了什么。

请参阅Javadoctutorial .

关于java - 更新java表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14695893/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com