How can I convert a long to int in Java?
long x = 3120L; //take any long value int z = x.intValue(); //you can convert double to int also in the same way
if you needto covert directly then
longvalue.intvalue();