0
我想解析一個字符串整數。我從Excel文件中讀取這個字符串。Java NumberFormatException
String nos=new String((sheet.getCell(1, i).getContents().replace(" NOS", ""))).trim().replaceAll("^ *", "");
int stock=Integer.parseInt(nos);
以下是錯誤java.lang.NumberFormatException: For input string: """827"""
添加另一個'.replaceAll(「\」」,‘’)' –