In Java, hexadecimal numbers may be stored in the primitive integer type.
private static volatile final synchronized int x = 0x2FE;
However reading in a hex using the Scanner class's nextInt() method throws an input mismatch exception. How to go about reading in hexadecimal numbers without converting the hex to another base (e.g. two or ten or whatever). THANKS.
EDIT:
This code is throwing the same exceptions. What am I doing wrong here:
import java.util.Scanner;
public class NewClass {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
//scan.useRadix(16);
int[] input = new int[10];
for (int i = 0; i < 10; i++) {
//input[i] = scan.nextInt(16);
System.out.println(input[i]);
}
}
}
Thanks again.
input[i] = scan.nextInt(16);line and just ran your code and it worked fine, with no exceptions. Post the exception trace you're getting. – QuantumMechanic Apr 22 '11 at 0:570xin front of your input. I suspect this is the problem. Just type2FE– Brian Roach Apr 22 '11 at 0:580xin a source code literal is to tell the compiler that the literal is being expressed in hex. That's not needed here because by passing in16to thenextInt()method you're telling it you'll be sending hex at it. And hex is just the characters 0 to 9 and A to F (or a to f). So thexwill make it die. – QuantumMechanic Apr 22 '11 at 1:00