↧
Answer by Hovercraft Full Of Eels for Notify PropertyChangeListener faster
Your problem is here: read.execute(); return read.get(); get() is a blocking call, and so calling it from the event thread immediately after executing your worker will block the event thread and your...
View ArticleNotify PropertyChangeListener faster
So I'm creating a JProgressBar that displays the progress of a CSV manipulation, where every line is read and checked if there are no null values in obligatory (NOT NULL) columns. For that, I've...
View Article