UI in JAVA Suggestion [closed]
I need your suggestion on this:
Suggest/Recommend a tool and/or version of Java to use for developing bar graphs by reading input from text file.
I am working on a group project and my friend will provide the data (internet usage, time duration and name of application in form of numbers) I need to show this in form of UI, I want this Java code to run as a exe, which on clicking reads file (text preferably) stored in local machine and show user the analysis graph.
You have to basically do the following
- Write a java program to read the file content to a data model. Depending on the file format, you can find open source parsers.
- Once you read the data, you can use a library like JFreechart to create a bar chart and display to the user. for more info look here enter link description here
- There are lots of libraries to make a java application as an executable. one such library is enter link description here
精彩评论