Code Monkey home page Code Monkey logo

Comments (7)

cowtowncoder avatar cowtowncoder commented on June 14, 2024

Yes, header names are trimmed using same rules as values. To retain spaces, it would be necessary to either double-quote contents, or use escape mechanism (if enabled via CsvSchema).
My understanding is that this is what CSV specification (loose as it is) suggests.

from jackson-dataformats-text.

rdifalco avatar rdifalco commented on June 14, 2024

That's a bummer. AWS writes it's detailed billing files making Tags into headers. Tags can have leading or trailing space so " Header" != "Header " != "Header". The Apache CSV parser handles this correctly (as well as most python ones). I love the Jackson Parser but there seems to be no way to make it work for this case. I did code up a crazy solution of reading String[] and making the first row create a header Map<String,Index> and then fake it out into thinking it was iterating Map<String,String> instead of String[]. But it's a lot of code just to work around this issue.

I really believe that your interpretation of the CSV spec is correct. The problem is that no one else's is. Also a flag just to remove that hard coded trim would be pretty awesome.

from jackson-dataformats-text.

cowtowncoder avatar cowtowncoder commented on June 14, 2024

There is CsvParser.Feature.TRIM_SPACES, which you can disable, although it affects headers and values the same way.

Would it also make sense to file an issue against AWS? (regardless of if Jackson can work with this).
White-space that is not enclosed in quotes (or escaped) really is not properly handled when writing CSV, so they are producing something that does not really inter-operate well.
This assuming I understand your issue correctly.

from jackson-dataformats-text.

rdifalco avatar rdifalco commented on June 14, 2024

I could file an issue with AWS but I doubt they'll fix it.

As far as I can tell disabling CsvParser.Feature.TRIM_SPACE will only fix values. Headers are always trimmed in CsvParser. It's hard coded.

from jackson-dataformats-text.

rdifalco avatar rdifalco commented on June 14, 2024

from jackson-dataformats-text.

rdifalco avatar rdifalco commented on June 14, 2024

Actually it looks like even if it is enclosed in quotes that the above line will trim it.

from jackson-dataformats-text.

cowtowncoder avatar cowtowncoder commented on June 14, 2024

Hmmh. Ok, that seems wrong then. I do think enclosed spaces should be retained.

from jackson-dataformats-text.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.