我有一个严重的问题。问题是: java.awt.HeadlessException
现在的问题是,我在一个月之前编写了相同的代码,它在Windows 7和Windows中运行良好。 NetBeans 7.1的不同之处在于他在servlet中编写代码但是我在Java文件中编写了一个&然后从servlet调用该方法。
BELIEVE ME IT'S 100% WORKS.
但现在我在Windows 8& NetBeans 7.3只更改了这两个。现在它不起作用会产生无头异常。我该怎么办?
现在请告诉我如何上传文件?我需要完整的目录路径,它将保存在数据库中
Register.jsp:
<a href="UploadUserImage">
<input type="button" class="button round blue image-right ic-upload text-upper" value="Upload" name="upload"/>
</a>
<font style="font-family: Times New Roman; font-size: 16px; color: #2a2e36; font-style: italic;"><%= image %></font>
<input type="hidden" value="images/Member/<%= image %>" name="image"/>
UploadImage.java(Servlet的):
String image="images/"+new UploadFile().Upload();
request.getRequestDispatcher("Register.jsp?image="+image).forward(request, response);
UploadFile.java:
public class UploadFile
{
File file;
public String Upload()
{
try
{
final JFileChooser fc = new JFileChooser();
String[] extensions={"jpg", "png", "gif"};
FileNameExtensionFilter filter=new FileNameExtensionFilter("Images", extensions);
fc.setFileFilter(filter);
fc.setMultiSelectionEnabled(false);
//fc.setCurrentDirectory(new File("C:\\tmp"));
fc.setApproveButtonText("Upload");
int retVal = fc.showOpenDialog(new JPanel());
file=fc.getSelectedFile();
String src,dst;
src=file.getAbsolutePath();
dst="C:\\Users\\SHUVAM KAYAL\\Documents\\NetBeansProjects\\BookShopManagment\\BookShopManagment-war\\web\\images\\Member\\"+file.getName();
copy(new File(src), new File(dst));
}
catch (IOException ex)
{}
catch(NullPointerException e)
{}
return file.getName();
}
public void copy(File sourceLocation , File targetLocation) throws IOException {
if (sourceLocation.isDirectory()) {
if (!targetLocation.exists()) {
targetLocation.mkdir();
}
String[] children = sourceLocation.list();
for (int i=0; i<children.length; i++) {
copy(new File(sourceLocation, children[i]),
new File(targetLocation, children[i]));
}
} else {
InputStream in = new FileInputStream(sourceLocation);
OutputStream out = new FileOutputStream(targetLocation);
// Copy the bits from instream to outstream
byte[] buf = new byte[1024];
int len;
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}
in.close();
out.close();
}
}
}
答案 0 :(得分:5)
您正在混合WebApplication(HTML / JSP / Servlet / Java EE和朋友)和DesktopApplication(AWT / Swing / JavaFX和朋友)的概念。虽然有一些可能的混合和匹配,在你的情况下似乎没有任何意义。
如果你开发一个Web应用程序,使用JFileChooser
是没用的,因为它将在服务器端打开,而不是客户端(虽然,开发人员的一个典型错误,是打开{{1}并且相信它有效,因为客户端和服务器在开发时在同一台机器上运行。)
执行此操作的正确方法是在表单JFileChooser
中添加<input type="file" name="file">
,然后从请求中检索数据。
顺便说一下,当打开<form enctype="multipart/form-data" method="post">
时,您无法传递像JFileChooser
这样的随机父组件,但是您应该提供一个已经显示在fc.showOpenDialog(new JPanel())
内的适当组件(但是与你的情况无关。)
考虑一下也不要像你那样拥有空Window
块。发生这种情况时,很难调试。