我想從包含數字(有些是2位數字)的字符串中填充一個字節數組,其中包含空格。我知道有一個parseByte函數,但我不確定如何在填充數組時使用它,因爲它似乎只是將字符串作爲一個整數。從字符串填充數組字節
我不-工作代碼:
public static void popArray(byte[][] array, String numbers)
{
int counter = 0; //counter to track position in string of data
for(int i=0; i<20; i++) //cycle rows
{
for(int y=0; y<20; y++) //cycle columns
{
array[i][y] = (byte)(Character.digit(.charAt(counter), 10));
counter++; //increase place in data string
}
}
}
u能解釋如果輸入是ABCDEF ...然後什麼將是關於索引 – Kick
的字節值的數組將會是這樣的8 78 90 79 4 2 23 3 ...等 –
你使用二維數組,所以會是[0] [0],[0] [ 1] ...值 – Kick