Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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