Any best way to calculate numbers in string format ?
for example have
String n1 = 0.000112
String n2 = 0.000222
n1 + n2 - I can convert string to double make calculation. But after that I should convert this in string like this
n1 + n2 = string like this "0.000334"
Any best way how to do it with java ?