The end user will select an excel file on executing the below jsp program.
<form action="?? " method="post" enctype="multipart/form-data" name="form1" id="form1">
Upload File:
<input name="file" type="file" id="file"><br><br>
<input type="submit" name="Submit" value="Submit"/><br><br>
<input type="reset" name="Reset" value="Reset"/>
</form>
The excel sheet will be in a specified format which need to be read and compared with the contents of Database.
My query here is how should I proceed with this once the user browses the excel file and submits the jsp form.
How the excel sheet can be invoked to a java program and please explain me the steps of doing the same. Am a beginner in java and I would be so thankful if your answer is self explanatory.
Thanks in advance.