0
このエラーをインターネットで見つけようとしましたが、問題を解決できませんでした。 私は私のプロジェクトでのローカルフォルダに画像を保存しようとしていると私はそれを行うには、次のチュートリアルを使用:サーブレットのポストメソッドがJSPから値を取得していません
http://docs.oracle.com/javaee/6/tutorial/doc/glraq.html
私はコードをコンパイルエラーを受信していないが、私はNullPointerExceptionが受け。これは私のjspである:
<form action="uploadImagem.do" method="post" enctype="multipart/form-data"
name="productForm" id="productForm"><br><br>
<form method="POST" action="upload" enctype="multipart/form-data" >
File:
<input type="file" name="file" id="file" /> <br/>
Destination:
<input type="text" value="/tcc_SI_M_12 - 12-10-2016_v1/images" name="destination" disabled/>
</br>
<input type="submit" value="Upload" name="upload" id="upload" />
</form>
そして、これは私のサーブレットです:
@WebServlet("/uploadImagem.do")
public class uploadImagem extends HttpServlet {
private static final long serialVersionUID = 1L;
private final static Logger LOGGER =
Logger.getLogger(FileUpload.class.getCanonicalName());
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// Create path components to save the file
final String path = request.getParameter("destination");
System.out.println("Parametros: " + path);
final Part filePart = request.getPart("file");
final String fileName = getFileName(filePart);
OutputStream out = null;
InputStream filecontent = null;
final PrintWriter writer = response.getWriter();
try {
out = new FileOutputStream(new File(path + File.separator
+ fileName));
filecontent = filePart.getInputStream();
int read = 0;
final byte[] bytes = new byte[1024];
while ((read = filecontent.read(bytes)) != -1) {
out.write(bytes, 0, read);
}
writer.println("New file " + fileName + " created at " + path);
LOGGER.log(Level.INFO, "File{0}being uploaded to {1}",
new Object[]{fileName, path});
} catch (FileNotFoundException fne) {
writer.println("You either did not specify a file to upload or are "
+ "trying to upload a file to a protected or nonexistent "
+ "location.");
writer.println("<br/> ERROR: " + fne.getMessage());
LOGGER.log(Level.SEVERE, "Problems during file upload. Error: {0}",
new Object[]{fne.getMessage()});
} finally {
if (out != null) {
out.close();
}
if (filecontent != null) {
filecontent.close();
}
if (writer != null) {
writer.close();
}
}
}
private String getFileName(final Part part) {
final String partHeader = part.getHeader("content-disposition");
LOGGER.log(Level.INFO, "Part Header = {0}", partHeader);
for (String content : part.getHeader("content-disposition").split(";")) {
if (content.trim().startsWith("filename")) {
return content.substring(
content.indexOf('=') + 1).trim().replace("\"", "");
}
}
return null;
}
してください、私は上記のチュートリアルでは、いくつかの変更を加えました心。また、私は含まれており、System.outには、変数に私に勇気を表示するために、私はヌルを受けました。
私を助けてもらえますか?
感謝がたくさんです!
サーブレットに@MultipartConfigを含めなかったのはなぜですか? – rickz