0
votes
2answers
47 views
BigDecimal serialization in GWT
What is your preferred approach to serializing BigDecimal in GWT?
Are there any clever workarounds, or do you simply use Double or String?
Of all of the GWT pains this is so far …
0
votes
1answer
29 views
Ruby 1.8.6 BigDecimal.to_f always returns ‘0,0’ on Solaris
Hi,
I have come across a very weird error. I'm on Solaris 10, using Ruby Enterprise Edition (ruby 1.8.6 (2008-08-08 patchlevel 286) [i386-solaris2.10]) with Rails 2.3.4. I have a …
1
vote
4answers
457 views
java - BigDecimal
I was trying to make my own class for currencies using longs, but Apparently I should use BigDecimal (and then whenever I print it just add the $ sign before it). Could someone ple …
1
vote
4answers
465 views
Javascript BigDecimal library?
Is there a good javascript BigDecimal library out there?
I saw this one: http://www.navioo.com/javascript/BigDecimal_for_JavaScript_959.html# (also known as http://stz-ida.de/html …
1
vote
4answers
139 views
data type to represent a big decimal in java
Which data type is apt to represent a decimal number like "10364055.81".
If tried using double:
double d = 10364055.81;
But when I try to print the number, its displaying as "1 …
0
votes
0answers
107 views
Struts 2 - Problemas with validation/convertion of BigDecimal
Hi. I'm having some problems trying to convert/validate a java.math.BigDecimal[][] in a Struts 2 action class. I need to display the values localized (pt_BR) so I wrote a BigDecima …
1
vote
2answers
79 views
Analog of StringBuilder for BigDecimal.
I've got a list of BigDecimals to sum. If they were Strings to concatenate, I would use StringBuilder to reduce object creation. Is there something similar for BigDecimal? Or maybe …
0
votes
3answers
642 views
Oracle hibernate sequence generator problem
Hello friends,
I am developing an application using oracle 11g, Java(struts2) and Hibernate.
I have table named mytemp with column mytemp_id which is of type NUMBER(22,0).
In my …
1
vote
5answers
210 views
How using BigDecimal would affect application performance?
I want to use BigDecimal to represent arbitrary precision numbers like prices and amounts in a low-latency trading application with thousands of orders and execution reports per se …
0
votes
2answers
90 views
Java - too many BigDecimals?
For more info, see my other question, here. So anyway, I'm using BigDecimals to represent currency in my application (it deducts a markdown percentage and adds sales tax), but it s …
0
votes
2answers
118 views
Does Scala’s BigDecimal violate the equals/hashCode contract?
As the Ordered trait demands, the equals method on Scala's BigDecimal class is consistent with the ordering. However, the hashcode is simply taken from the wrapped java.math.BigDec …
1
vote
1answer
111 views
Scala BigDecimal division
What use is the division operator on a scala BigDecimal?
val d1 = BigDecimal(2)
val d2 = BigDecimal(3)
val div = d1 / d2 //throws ArithmeticException: non-terminating decimal exp …
1
vote
3answers
313 views
Java BigDecimal remove decimal and trailing numbers
Hello all,
I'm new to Java and trying to take a BigDecimal (for example 99999999.99) and convert it to a string but without the decimal place and trailing numbers. Also, I don't w …
0
votes
1answer
179 views
Java Math Functions for BigDecimal
Are there complementary mathematical functions used in java.lang.Math that fully utilize the capabilities of BigDecimal? In other words, is there a log function that takes and retu …
4
votes
5answers
766 views
Java library to check whether a String contains a number *without* exceptions
I'm looking for a method that returns a boolean if the String it is passed is a valid number (e.g. "123.55e-9", "-333,556"). I don't want to just do:
public boolean isANumber(Stri …
