Input to the boot file JQuery plugin developed by Krajee (SyntaxError: Unexpected end of input)

I have a problem. I used this http://plugins.krajee.com/file-input/demo to upload files, ok, the file uploaded successfully to the server, but on the jsp page show message "SyntaxError: Unexpected end of input.", Although the file was uploaded successfully to the server.File uploadedBut on jsp page error mes

My servlet, I think the problem is here (maybe with 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");
} 

}

+4
source share
1 answer

As noted at http://plugins.krajee.com/file-input#async-send :

JSON , . - , , JSON {} .

+3

All Articles