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文字列を扱っています。私の問題は、「1.500000154」という文字列があることです。元の文字列「1.500000154」から結果の文字列「1.5」を取得するにはどうすればよいですか?
1.500000154 >>>>>>>> 1.5
BigDecimal bigDecimal = new BigDecimal("1.500000154"); bigDecimal.setScale(1, BigDecimal.ROUND_HALF_UP) String result - bigDecimal.toString();