I need to write a utility program
in JAVA
that lets the user upload a file(spreadsheet etc.) and display it on the UI and later do some interaction on it and creates a template(flat file) out of it. It's more like mapping one format to another. Should I make a web-app
or desktop app(standalone/thick client)
for this scenario? What criteria let you decide between the two? I am new to desktop apps, so I am more leaning towards a very simple webapp
deployed in tomcat
. But I am willing to get my feet wets if it worth the effort to make a thick client instead.
Any tips?