Posts

Showing posts with the label jsp

How to upload file using JSP and Servlet

Image
In this tutorial, I will like to share how to upload file on JSP page and servlet. Note: Please add JSTL1.1 library and Apache Common FileUpload *JSTL 1.1 library is in global libraries. (I'm using Netbean 7.3.1) JSP file <%@page contentType="text/html" pageEncoding="UTF-8"%> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <!DOCTYPE html> <html>     <head>         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">         <title>JSP Upload page - servlet</title>     </head>     <body>         <h1>Upload file JSP!</h1>         ${uploadMessage}         <br/>         <form action="<c:url value="/uploadservlet" />" method="post" enctype="multipart/form-data">             <input type="file" id="FUploadDoc" name="afile" size="50&qu