我想獲得一個字符串並將它轉換成一個長我一直怎麼過讓上述java.lang.NumberFormatException輸入字符串「」
public long[] stringToLongDecrypt()
{
long ciphertext[] = new long[elements.length];
for(int i=0; i<ciphertext.length; i++)
{
ciphertext[i] = Long.parseLong(elements[i].trim(), 16);
}
return ciphertext;
}
任何想法提到的錯誤?
這是正確的行爲。你想從空串中得到什麼? – Braj