You are not logged in.
Announcement
Unanswered posts
|
Pages: 1

Hi guys
It's me ... again !!! ![]()
Here is an example of my file
_________________________
15;2013;25/02/1998;3;999;1;1003,49
15;2105;25/02/1998;3;999;1;1003,49
...
Well I want to convert decimal text column to floating point Postgres Column.
when i try to do that i've got an cute error message ![]()
_________________________________________________________________
tarting job job_2 at 18:17 04/07/2007.
[statistics] connecting to socket on port 3334
[statistics] connected
Exception in component tFileInputDelimited_1
java.lang.NumberFormatException: For input string: "1003,49"
at sun.misc.FloatingDecimal.readJavaFormatString(Unknown Source)
at java.lang.Float.parseFloat(Unknown Source)
at routines.system.ParserUtils.parseTo_float(ParserUtils.java:50)
at projet_1.job_2.job_2.tFileInputDelimited_1Process(job_2.java:296)
at projet_1.job_2.job_2.main(job_2.java:536)
[statistics] disconnected
Job job_2 ended at 18:18 04/07/2007. [exit code=0]
My question ...
Is there an numeric pattern or an other trick to convert my column ?
like that 1003,49 to 1003.49
THX
Regards ...
Didier
_____________________
Under Windows XP
TOS:v2.1.0.M1_r3483
Oracle 10g
Postgres 8.2.3
jre 1.6
_________________________________________________________________
Last edited by didierkisscool (2007-07-04 18:37:34)
Offline

Hello
Problem is that , is not the decimal separator in Java.
You have to read your fields as a String.
Then you can parse it and convert it as a Float in a tMap : new Float(row.fieldName.replace(',', '.'))
Regards,
Offline

hi ![]()
oki I try and i keep you informed
i saw the hour of your answer ... lol go to sleep !!! ![]()
thx a lot
Regards
Offline

Hi ...
it work !
Thaaaaaaaanks ![]()
Have fun ![]()
Regards !
Offline
Hello Didier,
I'm facing the same trouble as you did : wanna change decimal separator ',' by '.' from string to float.
I've tried to use a tMap Component with this piece of code :new
Float(row.fieldName.replace(',', '.'))
It fails... Where should I write this expression ?
I'm new to Talend so it would be very kind to help me.
Hi matthieu
See [Forum, topic 1846] Pb remontée fichier Excel vers Table As400.
Best regards
shong
Offline
mhirt wrote:
Hello
Problem is that , is not the decimal separator in Java.
You have to read your fields as a String.
Then you can parse it and convert it as a Float in a tMap : new Float(row.fieldName.replace(',', '.'))
Regards,
This my problem Thank you very muchhhh...
))
didierkisscool wrote:
Hi guys
It's me ... again !!! :D
Here is an example of my file
_________________________
15;2013;25/02/1998;3;999;1;1003,49
15;2105;25/02/1998;3;999;1;1003,49
...
Well I want to convert decimal text column to floating point Postgres Column.
when i try to do that i've got an cute error message :(
_________________________________________________________________
tarting job job_2 at 18:17 04/07/2007.
[statistics] connecting to socket on port 3334
[statistics] connected
Exception in component tFileInputDelimited_1
java.lang.NumberFormatException: For input string: "1003,49"
at sun.misc.FloatingDecimal.readJavaFormatString(Unknown Source)
at java.lang.Float.parseFloat(Unknown Source)
at routines.system.ParserUtils.parseTo_float(ParserUtils.java:50)
at projet_1.job_2.job_2.tFileInputDelimited_1Process(job_2.java:296)
at projet_1.job_2.job_2.main(job_2.java:536)
[statistics] disconnected
Job job_2 ended at 18:18 04/07/2007. [exit code=0]
My question ...
Is there an numeric pattern or an other trick to convert my column ?
like that 1003,49 to 1003.49
THX
Regards ...
Didier
_____________________
Under Windows XP
TOS:v2.1.0.M1_r3483
Oracle 10g
Postgres 8.2.3
jre 1.6
_________________________________________________________________
Problem is that , is not the decimal separator in Java.
You have to read your fields as a String.
-----------------------------------------------------------------------
tuyen dung | viec lam | tim viec
didierkisscool wrote:
Hi guys
It's me ... again !!! :D
Here is an example of my file
_________________________
15;2013;25/02/1998;3;999;1;1003,49
15;2105;25/02/1998;3;999;1;1003,49
...
Well I want to convert decimal text column to floating point Postgres Column.
when i try to do that i've got an cute error message :(
_________________________________________________________________
tarting job job_2 at 18:17 04/07/2007.
[statistics] connecting to socket on port 3334
[statistics] connected
Exception in component tFileInputDelimited_1
java.lang.NumberFormatException: For input string: "1003,49"
at sun.misc.FloatingDecimal.readJavaFormatString(Unknown Source)
at java.lang.Float.parseFloat(Unknown Source)
at routines.system.ParserUtils.parseTo_float(ParserUtils.java:50)
at projet_1.job_2.job_2.tFileInputDelimited_1Process(job_2.java:296)
at projet_1.job_2.job_2.main(job_2.java:536)
[statistics] disconnected
Job job_2 ended at 18:18 04/07/2007. [exit code=0]
My question ...
Is there an numeric pattern or an other trick to convert my column ?
like that 1003,49 to 1003.49
THX
Regards ...
Didier
_____________________
Under Windows XP
TOS:v2.1.0.M1_r3483
Oracle 10g
Postgres 8.2.3
jre 1.6
_________________________________________________________________
Problem is that , is not the decimal separator in Java.
You have to read your fields as a String.
-----------------------------------------------------------------------
tuyen dung | viec lam | tim viec

Hi,
I have a similar problem.
Input string: "139,95 €"
Expected output: "13995" Typ int.
I've solved this problem by using the treplce component (see image), but i think it is possible to do all the stuff in tmap component? am i right?
Last edited by littledirk (2012-02-15 09:47:55)
Offline
Pages: 1