I have a texfile with order IDs and their corresponding status, which I need display on a webpage. The Java App which I have written recieves new orders from a text file the cash register outputs by renaming it, reading the contents and then deleting the file. I was thinking of doing this a similiar way, but I do not know how.
The Text file looks like this:
1,01
2,02
1,12
And the corresponding display on the Web Page should look like this:
Orders in Progress Orders ready
01 02
12
Thank your for the help