Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
10 進数を含むテキスト ファイルがあります。Java プログラムで使用しようとしてInteger.valueOf()いますが、10 進数が変換されません。
Integer.valueOf()
10 進数の文字列を int に変換するにはどうすればよいですか?
代わりにDouble.valueOf() ここで定義されたJava を使用できます。結果の double を int に変換できます。
Double.valueOf()