Re: [CSV] Record Separator query

2017-08-09 Thread nitin mahendru
Hi Gary, Thanks for a quick turnaround. We are using the below code to parse our input csv: CSVFormat.RFC4180.withIgnoreEmptyLines(true).parse(new InputStreamReader(this.getStreamIn(), readerCharset)) We never tell the parser what line separator to expect and it automatically figures it out.

Re: [CSV] Record Separator query

2017-08-09 Thread Gary Gregory
If you look at the Javadoc or the code for CSVFormat.RFC4180 you will see that this format uses CR LF. Gary On Wed, Aug 9, 2017 at 10:51 AM, nitin mahendru wrote: > Hi Gary, > > Thanks for a quick turnaround. We are using the below code to parse our > input csv: >

Re: [CSV] Record Separator query

2017-08-09 Thread Tim Cronin
you can extend the formats and set the delimiter that way. https://commons.apache.org/proper/commons-csv/archives/1.2/apidocs/org/apache/commons/csv/CSVFormat.html https://commons.apache.org/proper/commons-csv/archives/1.2/apidocs/org/apache/commons/csv/CSVFormat.html#withDelimiter-char- On

[Math] PolyhedronsSet query

2017-08-09 Thread Zach
Hi, I am making a PolyhedronsSet object by list of vertices and faces. Once I have created that object, I would like to get that same information back out or get a list of vertices. I am trying to use the union command to union two PolyhedronsSets and then get the lines or vertices of the

Re: [CSV] Record Separator query

2017-08-09 Thread nitin mahendru
Hi Tim, I am not worried about the delimiter. I am worried about the "line seperator". We are in the process of writing a multi platform application. So we need to be able to accept CSVs generated with Windows/Linux type Line endings. While parsing the parser can identify that information, but it

Re: [CSV] Record Separator query

2017-08-09 Thread Guang Chao
On Wed, Aug 9, 2017 at 6:12 AM, nitin mahendru wrote: > Hello All, > > I am trying to read in a csv file which may be 'crlf' or 'lf' seperated. > Then I want to change a particular column, say encrypt it and then write > back a new csv with that updated column. I want

Re: [Math] PolyhedronsSet query

2017-08-09 Thread Guang Chao
On Thu, Aug 10, 2017 at 3:56 AM, Zach wrote: > Hi, I am making a PolyhedronsSet object by list of vertices and faces. > Once I have created that object, I would like to get that same information > back out or get a list of vertices. I am trying to use the union command to >

Re: [CSV] Record Separator query

2017-08-09 Thread Gary Gregory
On Wed, Aug 9, 2017 at 5:04 PM, Guang Chao wrote: > On Wed, Aug 9, 2017 at 6:12 AM, nitin mahendru > > wrote: > > > Hello All, > > > > I am trying to read in a csv file which may be 'crlf' or 'lf' seperated. > > Then I want to change a