JSP
<form action="AddCategoryServlet" id="AddCategoryForm" target="_self" method="post">
<table>
<tr>
<td> <div align="center" class="group">
<input type="text" id="CName" name="texCname" required />
<span class="highlight"></span>
<span class="bar"></span>
<label id="CNamecheck">Category Name</label>
</div>
</tr>
<tr>
<td> <div align="center" class="group">
<input type="text" id="CDescript" name="texCdescript" required />
<span class="highlight"></span>
<span class="bar"></span>
<label id="CDescriptcheck">Category Description</label>
</div>
</tr>
<tr>
<td> <div align="center" class="group">
<input type="text" id="CImage" name="texCImage" required/>
<span class="highlight"></span>
<span class="bar"></span>
<label id="CImagecheck">File Path</label>
<input style="display:none;" type="file" id="file" name="file"/>
<input style="position:absolute;top:10px;left:315px;font-size:10px;" type="button" value="Choose Image" id="uploadbutton" class="myButton" />
</div>
</tr>
</table>
<input type="submit" value="Add Category" class="myButton" />
</form>
单击时选择图像按钮使用jquery为输入类型=文件触发单击事件 - :
$("#uploadbutton").click(function(){
$("#file").click();
});
我将用于将文件放入数据库的servlet是 - :
try
{
String Name,Description=null;
Name=request.getParameter("texCname");
Description=request.getParameter("texCdescript");
InputStream inputStream= null;
Part filePart= null;
filePart= request.getPart("file");
if (filePart != null)
{
System.out.println(filePart.getName());
System.out.println(filePart.getSize());
System.out.println(filePart.getContentType());
inputStream = filePart.getInputStream();
}
Connection con= BaseDAO.getConnection();
PreparedStatement pst = con.prepareStatement("INSERT INTO CATEGORY(Category_Name, Image, Description) VALUES (?,?,?)");
pst.setString(1,Name);
pst.setBlob(2,inputStream);
pst.setString(3,Description);
pst.executeUpdate();
}
catch(ClassNotFoundException | SQLException e)
{
e.printStackTrace();
}
我收到列'Image'的错误不能为null。在调试时,我发现变量filePart的值为null,即它没有从jsp接收name =“file”的参数。有人可以指出我哪里出错了。
答案 0 :(得分:0)
您无法一次处理文本和输入类型文件等普通输入类型,您需要使用特殊库来处理此类请求。
您需要在表单中写下enctype="multipart/form-data"
,
<form action="AddCategoryServlet" id="AddCategoryForm" target="_self" method="post" enctype="multipart/form-data" >
........
</form>
但请注意,通过撰写enctype="multipart/form-data"
,您无法处理普通输入,即input type="text"
因此,如果您想要一个简单的方法,则在发送图像时创建包含enctype="multipart/form-data"
的2个单独表单,并在您的问题中指定一个仅包含文本数据的表单。