Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
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