Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
TDIALLO
Contributor
Contributor

How i can convert double in Integer?

Hi,

How i can convert double to integer(int) in Talend.

Labels (3)
1 Reply
tjohn
Contributor
Contributor

Hi,

Give a try to this :

int i = Double.valueOf(5.0).intValue(); // here 5.0 your double number

Thanks