Convert Long into Integer

0
How to convert a Long value into an Integer value in Java?

Integer i = (int) (long) theLong;