I get data for the database and are displayed in the table.
My getColumnClass
@Override
public Class<? extends Object> getColumnClass(int column) {
return getValueAt(0, column).getClass();
}
when I print the value, I get the class name as java.sql.Timestamp, but when it displays, I have a problem, it just displays dd / MM / yyyy, but I need to display dd / MM / yyyy HH: mm, like I can i achieve this?
Other than that, I need to check if there is less data than today, and then turn off the line
Vivek source
share