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

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
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