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.
私は(Java)を使用しており、小数点と先行ゼロを持つ値をSelenium WebDriver渡しています。String削除したいです。これは私が試していることですが、うまくいきません:
Selenium WebDriver
String
String data=2000.0 Long.parseLong(data);
(long)Double.parseDouble("2000.0");
最初に String を double に変換し、次に long に変換します。
これを実装することもできます-
String data = "2000.0"; int i = Integer.parseInt(data);