PrimeFaces 2.2.1 FileUpolad error

UI Components for JSF
Post Reply
digitalmee
Posts: 6
Joined: 12 Dec 2011, 03:57

12 Dec 2011, 04:33

Hi there,
I got this weird error, that can't understand what's going on

SEVERE: invalid distance too far back
java.util.zip.ZipException: invalid distance too far back

I'm Using:
tomcat 7
JSF 2 Mojarra 2.1.3
commons-fileupload-1.2.1
commons-io-1.3.2
SuperCSV-1.52

I'm trying to upload a CSV file and parse it with SuperCSV

/***** web.xml ****

Code: Select all

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
  
  <display-name>csv</display-name>
  
  <context-param>
    <description>State saving method: 'client' or 'server' (=default). See JSF Specification 2.5.2</description>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
  </context-param>
  <context-param>
    <param-name>javax.servlet.jsp.jstl.fmt.localizationContext</param-name>
    <param-value>resources.application</param-value>
  </context-param>
  
  <filter>
	<filter-name>PrimeFaces FileUpload Filter</filter-name>
	<filter-class>org.primefaces.webapp.filter.FileUploadFilter	</filter-class>
  </filter>
  <filter-mapping>
	  <filter-name>PrimeFaces FileUpload Filter</filter-name>
	   <url-pattern>/*</url-pattern>
  </filter-mapping>
  
  
  <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
  </servlet-mapping>
  
  <listener>
    <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
  </listener>
  
  
  <welcome-file-list>
    <welcome-file>index.xhtml</welcome-file>
  </welcome-file-list>
</web-app>
/****** index.xhtml *****

Code: Select all

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3c.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.prime.com.tr/ui">
<h:head>
</h:head>
<h:body>
<h:form id="uplaodFileForm" prependId="false" enctype="multipart/form-data">

	<p:fileUpload id="uploader" fileUploadListener="#{fileBean.handleFileUpload}" />
	</h:form>
</h:body>
</html>

/***** FileBean.java ******

Code: Select all

package org.mapuche.csv.ui;

import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.Reader;

import javax.faces.bean.ApplicationScoped;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;

import org.mapuche.csv.model.Transaction;
import org.primefaces.event.FileUploadEvent;
import org.primefaces.model.UploadedFile;
import org.supercsv.cellprocessor.Optional;
import org.supercsv.cellprocessor.ParseDate;
import org.supercsv.cellprocessor.ParseDouble;
import org.supercsv.cellprocessor.ParseInt;
import org.supercsv.cellprocessor.constraint.StrMinMax;
import org.supercsv.cellprocessor.constraint.Unique;
import org.supercsv.cellprocessor.ift.CellProcessor;
import org.supercsv.io.CsvBeanReader;
import org.supercsv.io.ICsvBeanReader;
import org.supercsv.prefs.CsvPreference;

@ManagedBean
@ApplicationScoped
public class FileBean {
	
public void handleFileUpload(FileUploadEvent event) {
	UploadedFile file = event.getFile();
	System.out.println(file.getFileName());
	
	}//handleFileUpload
}//class


Although I'm gonna use SuperCSV I don't have coded anything with that.
The Manged bean event hanfler is never reached though.

thanks

DigitalMee

Post Reply

Return to “PrimeFaces”

  • Information
  • Who is online

    Users browsing this forum: No registered users and 53 guests