Tagged Questions
61
votes
16answers
132k views
How to round a number to n decimal places in Java
What I'd like is a method to convert a double to a string which rounds using the half-up method. I.e. if the decimal to be rounded is a 5, it always rounds up the previous number. This is the standard ...
8
votes
5answers
916 views
How do I generate a random n digit integer in Java using the BigInteger class?
I am unsure about how to generate a random n digit integer in Java using the BigInteger class.
2
votes
3answers
188 views
Problem on getting digits in a double variable
I got a little problem with a function I need in my java progam. I want to check the total amount of digits, a 'double' variable has. (e.g.: 5 should return 1, 5.0034 should return 5, and 2.04 should ...
0
votes
5answers
474 views
Fastest way to pad a number in Java to a certain number of digits
Am trying to create a well-optimised bit of code to create number of X-digits in length (where X is read from a runtime properties file), based on a DB-generated sequence number (Y), which is then ...