Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
TDIALLO
Contributor II
Contributor II

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