Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
How i can convert double to integer(int) in Talend.
Hi,
Give a try to this :
int i = Double.valueOf(5.0).intValue(); // here 5.0 your double number
Thanks