我有问题。我使用这个http://plugins.krajee.com/file-input/demo进行文件上传,好吧,文件在服务器上成功上传,但是在jsp页面上显示消息“SyntaxError:意外的输入结束。”,尽管文件已成功上传到服务器上。
我的servlet,我认为这里有问题(也许是JSON)。
public class UploadImageCommand implements ActionCommand {
enum Type {
IMAGES("/upload/images", ".jpg", ".bmp", ".gif", ".png", ".jpeg"),
VIDEOS("/upload/videos", ".avi", ".mpeg", ".mpg", ".mp4", ".mov", ".mkv", ".flv"),
MUSICS("/upload/musics", ".mp3", ".wav");
private String path;
private String[] formats;
Type(String path, String... format) {
this.path = path;
this.formats = format;
}
public String[] getFormats() {
return formats;
}
public String getPath() {
return path;
}
}
private static String parseFileFormat(String fileName) {
fileName = fileName.toLowerCase();
int dotPosition = fileName.lastIndexOf(".");
String format = fileName.substring(dotPosition, fileName.length());
return format;
}
private Type getType(String fileName) {
String format = parseFileFormat(fileName);
Type[] values = Type.values();
for (int i = 0; i < values.length; i++) {
for (int j = 0; j < values[i].getFormats().length; j++) {
if (values[i] == Type.IMAGES && values[i].getFormats()[j].equals(format)) {
return Type.IMAGES;
} else if (values[i] == Type.VIDEOS && values[i].getFormats()[j].equals(format)) {
return Type.VIDEOS;
} else if (values[i] == Type.MUSICS && values[i].getFormats()[j].equals(format)) {
return Type.MUSICS;
}
}
}
return null;
}
@Override
public void execute(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
ServletContext context = request.getSession().getServletContext();
if (ServletFileUpload.isMultipartContent(request)) {
try {
String fileName = null;
String filePath;
Type type = null;
List<FileItem> multiparts = new ServletFileUpload(
new DiskFileItemFactory()).parseRequest(request);
System.out.println("Multipart size: " + multiparts.size());
for (FileItem item : multiparts) {
if (item.getName() == null || item.getName() == "") {
continue;
}
System.out.println("Part : " + item.getName());
if (!item.isFormField()) {
fileName = new File(item.getName()).getName();
type = getType(fileName);
filePath = context.getRealPath(type.path);
if (type != null) {
SecureRandom random = new SecureRandom();
fileName = new BigInteger(130, random).toString(32) +
parseFileFormat(fileName);
item.write(new File(filePath + File.separator + fileName));
System.out.println("File uploaded successfully");
// System.out.println("File path: " + context.getRealPath(type.path));
} else {
throw new IllegalStateException("Wrong file format!");
}
}
}
// response.getWriter().print(json.toString());
} catch (Exception e) {
e.printStackTrace();
}
} else {
System.out.println("Sorry this Servlet only handles file upload request");
}
response.setContentType("application/json");
}
}
答案 0 :(得分:3)
正如http://plugins.krajee.com/file-input#async-send中所注意到的那样:
您必须从服务器发送有效的JSON响应,否则上传 过程将失败。即使您没有遇到任何错误,也必须在 至少从服务器发送一个空的JSON对象{}。