2011-02-28 59 views

回答

2
try { 
    Integer.parseInt(myString); 
} catch(NumberFormatException e) { 
    // Not an integer 
} 

Documentation for parseInt()如果你有興趣。

+0

謝謝,這工作得很好。 :) – 2011-02-28 01:23:07

相關問題