|
how to make jena listener listen to a rdf file that is modified from outside the java program. My rdf file is in a folder and listener should listen to the changes if i modify it manually. |
|
The Java WatchService is the API you need for monitoring changes to files on disk. Using this you can then add logic in your application to reload the RDF file as necessary. |

