import java.util.Arrays;
public class SecondLargestInArray
{
int getSecondLargest(int[] intArray)
{
Arrays.sort(intArray);
return intArray[intArray.length - 2];
}
public static void main(String[] args)
{
int[] intArray = { 1, 2,
8, 9, 12, 85, 90, 5, 6 };
SecondLargestInArray sla = new SecondLargestInArray();
System.out.println(sla.getSecondLargest(intArray));
}