copeg is absolutely correct, but you could also do this:

Integer i = new Integer(1); //could also be Integer i = 1;
i = i + 1;

Google autoboxing.