jackson-dataformat-csv icon indicating copy to clipboard operation
jackson-dataformat-csv copied to clipboard

(DEPRECATED) -- moved under: https://github.com/FasterXML/jackson-dataformats-text

Results 22 jackson-dataformat-csv issues
Sort by recently updated
recently updated
newest added

Let's assume we have two classes: ``` java class A { String s1 = "A_string1"; String s2 = "A_string2"; @JsonIgnore B b; } ``` ``` java class B { String...

I can't find anything as this... This Feature enables a default serialization (for Objects) calling their toString() method instead of launch error: com.fasterxml.jackson.databind.JsonMappingException: **CSV generator does not support Object values...

Enhancement
2.9

In [RFC-4180](http://www.ietf.org/rfc/rfc4180.txt) it is said that CSV implementations may choose to include a line break at the end of the file or not. It could be nice to add an...

Hi, My input CSV is not controlled by me. it is coming from some upstream server. I need to parse the CSV and there is fair chances for invalid values....

I am using filters for including/excluding columns which is working fine. My only problem is that the headers of the columns are not obeying the filters. I have created a...

I have a CSV file with the following content (just a limited extract here): ``` route_id,agency_id,route_short_name,route_long_name,route_desc,route_type,route_url,route_color,route_text_color OCE669711,OCESN,"",""Cars Réguliers ""L 11"" (Nantes - St Gilles Croix de Vie)"",,3,,, ``` Parsing this...

I have a 3rd party CSV file Im trying to import. Their quotes are not escaped so I have data like this: ``` 124785285,"PLACE","","Pindsvineplejerne, Dyreværnsforening Af 03 Januar 2016".","","","","22334455","OKMO","PHONE_NORMAL_MOBILE","0",1,0,"185","01305",12,"Diesen Alle","",,"","1234","Andeby","","","","","","","08-06-2017...

I didn't find if it is currently possible, but could we get support for fixed-length values? With possibility of left/right padding the value. I don't know if there is some...