-
-
Notifications
You must be signed in to change notification settings - Fork 251
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Custom CsvFormatDetector #434
Comments
Done, now you can pass your custom I'll release a 2.9.1-SNAPSHOT build in an hour from now which you can use to test. Thank you for using our parsers! |
Snapshot releases
You download univocity-parsers SNAPSHOT builds from this link
<https://oss.sonatype.org/content/repositories/snapshots/com/univocity/univocity-parsers/>
.
If you use maven, all you need is to add an additional repository entry to
the *repositories* section of your pom.xml:
<repositories>
...
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
</repositories>
…On Mon, Dec 21, 2020, 7:49 PM Dmitry Sleptsov ***@***.***> wrote:
Hi @jbax <https://github.com/jbax>
How soon the new build will be? Or the build is already done, am I using
the wrong repository? I use this repo
<https://repo1.maven.org/maven2/com/univocity/univocity-parsers/>, but
the last version still 2.9.0
Thanks
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#434 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABWFQPXUVM5STUJ4LFTOCQTSV4HI3ANCNFSM4U2UN5LA>
.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi guys,
I need to a little bit change the logic for defining CSV separators, but I ran into the problem of the impossibility of doing this in the current implementation of the library. In my case, I need to change the logic in the
CsvFormatDetector#execute
method ButCsvParser
is afinal
class, moreover, thegetInputAnalysisProcess
method is alsofinal
. And also theCsvFormatDetector
class is clearly not intended for extending, since most of the methods are private, which does not allow overriding only one method and using the parent methods. Tell me if there are any planned changes in the API or is there some other way to do it?Thank you in advance!
The text was updated successfully, but these errors were encountered: