16桁で満たされた文字列を、各インデックスが文字列内のそれぞれのインデックスの数字を保持するintの配列に変換しようとしています。文字列内の個々の int に対して計算を行う必要があるプログラムを作成していますが、試したすべての方法が機能していないようです。ユーザーが数字を入力しているため、文字で分割することもできません。
これが私が試したことです。
//Directly converting from char to int
//(returns different values like 49 instead of 1?)
//I also tried converting to an array of char, which worked,
//but then when I converted
//the array of char to an array of ints, it still gave me weird numbers.
for (int count = 0; count <=15; count++)
{
intArray[count] = UserInput.charAt(count);
}
//Converting the string to an int and then using division to grab each digit,
//but it throws the following error (perhaps it's too long?):
// "java.lang.NumberFormatException: For input string: "1234567890123456""
int varX = Integer.parseInt(UserInput);
int varY = 1;
for (count=0; count<=15; count++)
{
intArray[count]= (varX / varY * 10);
}
どうすればいいですか?