All Questions
Tagged with watchservice javafx
4 questions
0
votes
1
answer
536
views
JavaFX - How to create a new stage (open new window) when a file is created in specified directory?
I'm pretty new to JavaFX and I'm currently writing a simple GUI application that should react to file creation in a specified directory. So far, I have used WatchService in classic Java apps, but I'm ...
2
votes
0
answers
757
views
monitor log4j log for changes in Javafx
I'm very new java world in general. I have a javafx application where i'm trying to setup file watcher on log4j log file to watch for changes and display the changes in the textarea. I have the below ...
3
votes
1
answer
485
views
MVC: Best way of watching a directory for changes
Context:
I am newbie at JavaFX, but I'm trying to build an application which one of it's basic feature is to show the user all folders in certain directory and automatically update the view when there ...
1
vote
2
answers
1k
views
WatchService freezes JavaFX GUI
I've got a JavaFX application which has to trigger whenever a file is renamed. I'm new to WatchService, I've done the demo's and it works.
Though, the demo's are simple applications with 1 class. Now ...