dall'input prendi una stringa, poi lo casti a int col seguente metodo:
String s = br.readLine();
int x = Integer.parseInt(s);
se la stringa s non e' un numero, parseInt lancia un'eccezione e precisamente NumberFormatException (che eventualmente puoi gestire)