creating webpage that can download my excel client
I am new to java and i have to work on webpage which can download my excel client. working on spring framework.
I am new to java and i have to work on webpage which can download my excel client. working on spring framework.
My problem is i have just started workin gin java. this is my first project and this is based on spring and i dont know frm where to start. should i start with jsp page or servlet.
Spring is an advanced framework. An older and more popular one is Struts which I would suggest using before trying Spring (and getting about 2 years experience). However, if your just starting out in java, I suggest you dont use a framework since they are both way to advanced for a beginner. I suggest reading a book on JSP and how to get a server such as tomcat to display the page and slowly build up from that.
As far as reading an excel document from a web page, I suggest looking up the html tag <input type="file". But this too is a pretty advanced effort to read the contents from that tag back on the server in a servlet. Personnally, I suggest reading books on java, XHTML, JSP, JDBC, and servlets, in roughly that order. With a lot of reading and practice, you should be a reasonably good programmer in about 3 years.>