2016-03-22 70 views

答えて

2

IntegerクラスのparseInt()メソッドを使用すると、それを行うことができます。

// use camelCase to name variables and do not start 
// a variable name with uppercased letter - leave that 
// for classes 
String barCode = BarcodeTxt.getText(); 
int converted = Integer.parseInt(barCode); 

参考として、Javadoc for Integerを確認してください。

+2

明らかに重複した質問にはお答えください。これらを処理する方法については、[this](http://meta.stackexchange.com/questions/10841/how-should-duplicate-questions-be-handled)のスレッドを参照してください。 – Tgsmith61591

+0

それについて知らなかった - すみません。 –

関連する問題