I am trying to read a file containing data in the form of JSON objects and want to display them in a javafx TableView
.
FYI The data present in the file is in the following form.
{"fileName":"compiler.xml","fileSize":"0.716796875 kb","destination":"Dev/SyncUtility/.idea/","userName":"itl@itl.com","uploadTime":"Jun 27,2018 15:59","fileType":"xml","status":"uploaded"}
Image shows the javafx tableview where I want to display the data
As the table displays recent files I want to retrieve the data in reverse order and show them in the table.
Kindly suggest me how can I get this.