I am trying to upload xlsx file and read it's content to insert into database.
I completed download xlsx but facing issue in upload and reading the content
Here is the jsp:
<div align="center" style="margin-bottom: 10px;" >
<input style="width:200px" class="admin_search_btn" type=file name="uploadxls" value="" />
</div>
<div align="center" style="margin-bottom: 10px;" >
<button type="submit" class="admin_search_btn">Submit</button>
<button type="submit" class="admin_search_btn">Cancel</button>
</div>
How should I map this to controller to upload the file on server and read it's content?