BigDecimal is a numeric object type in Java that represents decimal numbers with arbitrary precision.

learn more… | top users | synonyms

0
votes
1answer
18 views

BigDecimal in JavaScript

I'm very new to JavaScript (I come from a Java background) and I am trying to do some financial calculations with small amounts of money. My original go at this was: <script ...
-3
votes
4answers
56 views

BigDecimal Exception message

What does this means? Exception in thread "main" java.lang.NumberFormatException java.math.BigDecimal.<init>(Unknown Source) But when I click on the line that would be causing the problem, ...
0
votes
1answer
16 views

DecimalFormat is being overridden by server settings

Currently I'm having a problem displaying formatted decimals. In my local machine I have a decimal value: 0.002100000000 stored in database. <h:outputText value="0.002100000000" ...
1
vote
2answers
46 views

Java BigDecimal : How to fortmat BigDecimal

I'm using BigDecimal for counting some big real number. Although I have try two method : BigDecimal.toString() or BigDecimal.stripTrailingZeros().toString(), it still not sasitfy my requirement. For ...
4
votes
1answer
31 views

How to specify the precision params with a String in BigDecimal constructor?

The BigDecimal constructor take an optional second params which specify the precision digits of the object. from ruby-doc: new(initial, digits) The number of significant digits, as a Fixnum. ...
0
votes
1answer
46 views

Can't get value of Map<BigDecimal, String> by key

I have a map like Map<BigDecimal, String> functions = new HashMap<BigDecimal, String>(); When I try to access the value of map from a JSF page, it displays nothing. I checked the size ...
1
vote
1answer
30 views

scale keeps growing beyond math context precision

I am working on some code that calculates points on a 2 axis graph and I noticed that when the X or Y coordinate was value zero it slowed down. I spit out some debug and found that the scale of my ...
0
votes
1answer
67 views

Rounding a BigDecimal in Java doesn't return the expected number

I have a property called m_FOBST which contains the following number: 1.5776. Here I'm trying to round it: this.m_FOBST.setScale(2, BigDecimal.ROUND_HALF_EVEN) However, I get the number 1.60 ...
0
votes
1answer
36 views

Java/scala BigDecimal parsing 128 bit hex value

I have a number, in this case it is 61d54e71b6c8409f9586ffd4cf9ffada. I would like to work with it's numeric representation. In python I would do: number = 61d54e71b6c8409f9586ffd4cf9ffada But I ...
2
votes
0answers
80 views

How to check equality between 2 HashMap<Number, String>?

I would like to check equality between 2 HashMap<Number,String>. My idea is converting each Number into BigDecimal with new BigDecimal(number.toString()) and then check equality with compareTo() ...
3
votes
1answer
63 views

How to identify BigDecimal from Double in Java

I'm writing a financial application where i'm getting a value as string and need to check if the value is can be fit into double or BigDecimal without data loss. What will be the best way to identify ...
-1
votes
2answers
35 views

Bigdecimal throws exception

I've wrote this little piece of code: BigDecimal nummer = new BigDecimal("8340337220.0"); BigDecimal denominator = new BigDecimal("17.O"); BigDecimal result = nummer.divide(denominator); ...
0
votes
0answers
39 views

BigDecimal validation not working with encType=multipart

I am using Spring STS+JPA Hibernate spring mvc project. I have a BigDecimal field, 'totalArea'. To validate this , i created a properties file with the error message and added required bean ...
1
vote
4answers
58 views

Java precise calculations - options to use

I am trying to establish some concise overview of what options for precise caluclations we have in JAVA+SQL. So far I have found following options: use doubles accepting their drawbacks, no go. use ...
0
votes
1answer
24 views

Strange issue with populating LinkedHashSet

Given the below code, is there some reason that when the final if-else statement steps into the else clause, if I un-comment the two lines of code and comment the "FOOZANAZABAR" and "TESTCAIRO" lines, ...
0
votes
3answers
79 views

Convert Java Number to BigDecimal : best way

I am looking for the best way to covert a Number into a BigDecimal. Is this good enough ? : Number number; BigDecimal big = new BigDecimal(number.toString()); Can we loose precision with ...
1
vote
2answers
30 views

Round non-terminating (irrational) BigDecimal properly

I have a maths-y problem. I have an irrational BigDecimal that I want to round off however I want to round it after it starts repeating itself if that makes sense. So for example if I had ...
1
vote
4answers
87 views

Is performing mathematical operations on String variable a good idea?

Is it a good idea to hold the numeric values in String variable in an object (also passing in methods and returning as String) and later while only operating it convert in BigDecimal and operate? The ...
0
votes
2answers
27 views

BigDecimal with minimal 2 fraction digits

I saw Using BigDecimal to work with currencies but I have a little different problem. I give object with BigDecimal parameters to PDF generation library and I can't use Formatter, only send objects. ...
0
votes
1answer
30 views

dividing bigdecimal containing bigger dividers than scale

I want to find a way to scale divisions of bigdecimals that can contain diverse numbers. if I use this code: r= x.divide(y,10, RoundingMode.HALF_UP); the result of almost all results are ...
1
vote
5answers
72 views

Big Decimal while loop

I had a while loop which used an integer but I converted it to a big Decimal since the the value was to high and i'm unsure of how to make my while loop work with a big Decimal instead of an integer ...
-1
votes
2answers
59 views

Eclipse Debug , change variable value on BigDecimal

How to provide a BigDecimal value while debugging in eclipse in Variables section? Eg: BigDecimal bd = new BigDecimal(21); if(bd.equals(new BigDecimal(20))) { .. } I have set the break point on if ...
0
votes
3answers
56 views

handling Null for bigdecimal

My code looks like below, caseX caseXObj = caseXBo.getCaseXDao().findCaseXBySID(selectedID); if(caseXObj != null && caseXObj.getCaseInGrossAmt() != null){ } else { ...
9
votes
1answer
214 views

Getting big decimals back from a yaml-serialized field in the database with Ruby on Rails

Using Ruby on Rails I have a couple of fields that are serialized (arrays or hashes mostly). Some of those contain BigDecimals. It is very important that those big decimals remain big decimals, but ...
0
votes
2answers
73 views

Validating BigDecimal data type for nulls In Java

I am trying to validate for NULLs on a data type BigDecimal in java. I am able to validate for 0 value however NULL's is resulting in a NULL Point Exception. Should I handle the validation of this ...
0
votes
1answer
21 views

Salesforce update() method error when using a BigDecimal

Is there a different between the upsert and update operations in Salesforce when it comes to data types? I use upsert to sync up my Contacts and update to sync up my Accounts. When setting a custom ...
0
votes
3answers
52 views

BigDecimal Rounding

So BigDecimal can't seem to store numbers that continue infinitely like the answer to 1/3. When I tried that, I get the following: Exception in thread "main" java.lang.ArithmeticException: ...
0
votes
4answers
154 views

Performace of BigDecimal vs. BigInteger and BigDecimal

I was debating whether to use BigDecimal and BigInteger or only BigDecimal to make my life easier and less converting back and forth. Is there a downside to only using BigDecimal in regards to ...
4
votes
4answers
71 views

Format BigDecimal without scientific notation with full precission

I'd like to convert a BigDecimal to String for printing purposes but print out all digits without scientific notation. For example: BigDecimal d = ...
0
votes
1answer
85 views

Double to BigDecimal, comparing both

I have to do a double comparison, I have tried many things, but nothing really works.. they are responsible for stopping a cycle. First off, compared double's them selves using (double) ...
1
vote
0answers
128 views

Java bigDecimal MySQL (Prepared Statement) decimal lost [closed]

My problem is that when I save my BigDecimal in database (ex: 22.21) and then we I get it back the BigDecimal from the database the decimal is not there anymore (ex: 22). I have the following query ...
0
votes
0answers
42 views

Any override for rspec errors on BigDecimal?

Big Decimal's to_s prints as scientific notation. rspec uses the to_s for error messages. How could rspec be monkey-patched so that it prints errors for BigDecimal using a more conventional ...
7
votes
2answers
70 views

Android: java rounding error. Can't understand why?

Can anybody explain why on Earth these "same" expressions returns different values? (new BigDecimal(String.valueOf(131.7d))).multiply(new BigDecimal(String.valueOf(0.95d))).doubleValue() = 125.115 ...
0
votes
2answers
50 views

Problems with BigDecimal.ROUND_UP

Why I am getting 184.84 as sell rate? Why is it acting like this in BigDecimal.ROUND_UP. I checked with the BigDecimal.ROUND_HALF_EVEN. It works fine. But I wanna know why is it acting like this. ...
1
vote
2answers
82 views

How to obtain the precision of BigInteger in Java

I'm implementing a custom validator in my web application that can validate a BigInteger property of a bean. This property is mapped to a Number(8, 0) type of Oracle table. Like BigDecimal, I don't ...
2
votes
1answer
281 views

Rounding BigDecimal to *always* have two decimal places

I'm trying to round BigDecimal values up, to two decimal places. I'm using BigDecimal rounded = value.round(new MathContext(2, RoundingMode.CEILING)); logger.trace("rounded {} to {}", value, ...
-1
votes
3answers
172 views

JAVA: How to convert BigDecimal to hex? [closed]

I have a number of type BigDecimal and I want to convert it to hexadecimal value. example value = 18446744073709551616 is there a way to do this instead of doing it manually ? Thanks
0
votes
3answers
120 views

Truncate the fractional part of a BigDecimal when its scale is zero in Java

I need to remove the fractional part of a BigDecimal value when its scale has a value of zero. For example, BigDecimal value = new BigDecimal("12.00").setScale(2, RoundingMode.HALF_UP); It would ...
4
votes
5answers
85 views

BigDecimal is not doing add operation [duplicate]

I have 2 BigDecimal numbers. I am trying to add them. My code is as follow: BigDecimal bd1 = new BigDecimal(10); BigDecimal bd2 = new BigDecimal(10); bd1.add(bd2); Here I am expecting the value of ...
0
votes
1answer
99 views

Format BigDecimal jsf 2.0

I'm new with jsf and i'm trying to format a BigDecimal in my jsf page. Here is what i did: <h:outputText value="#{entity.bigDecimalValue}"> <f:convertNumber maxFractionDigits="15" ...
2
votes
1answer
57 views

Why do immutable classes provide mutators?

Consider the following code: bdval = new BigDecimal(strval, new MathContext(attrib.getPrecision())); bdval.setScale(attrib.getScale(), RoundingMode.HALF_UP); PMD quite correctly says: ...
0
votes
2answers
77 views

BigDecimal Precision Issue?

I am writing a program in which I have to repeatedly multiply two BigDecimal. After the 27th iteration, I get: 0.905225895893387921845435055445776361046057346344145563957027726 Any further ...
5
votes
7answers
155 views

java BigDecimal subraction failing

I tried the following code. but getting different result when subtracting using BigDecimal. double d1 = 0.1; double d2 = 0.1; System.out.println("double result: "+ (d2-d1)); float ...
0
votes
1answer
32 views

How to retrieve BigDecimal with find_by_sql?

I'm performing a sum with postgreSQL and want to apply some calculation on the result, but rails return a string instead of a bigdecimal and refuse to convert it to bigdecimal. create_table ...
0
votes
1answer
143 views

Rounding mode with BigDecimal in Java

The following code which uses RoundingMode.HALF_EVEN, BigDecimal value1 = new BigDecimal("4.5"); value1=value1.setScale(0, RoundingMode.HALF_EVEN); BigDecimal value2 = new BigDecimal("6.5"); ...
1
vote
3answers
70 views

Using BigDecimal correctly

I'm not sure if I'm doing this right. I'm doing scientific calculations that need to be accurate as possible so I am converting the existing use of Double to BigDecimal. // before double tmp = x - ...
0
votes
1answer
45 views

Making a Program for Grouping in java - Bigdecimal

I am making a program for some of my teachers that takes a list of students from a .txt file and puts them into random groups with any size that the teacher inputs. When there are a number of students ...
3
votes
1answer
133 views

JAVA : Divide 2 bigdecimals and retain maximum number of digits after the decimal point

I want to divide 2 big decimals and retain maximum possible number of digits(say 1000 digits) in the non-terminating division result. What code shall I write to do this ? Please note : Is it ...
0
votes
2answers
71 views

int divided by int to make a BigDecimal

Is it possible to divide two integers to make and make a BigDecimal out of it? I'm attempting to optimize my code. If I could reduce the number of times I declared a new BigDecimal, it should speed up ...
5
votes
1answer
122 views

Decimal expansion program running very slow for large inputs

I am writing a program to calculate the decimal expansion on the number 103993/33102 and I want to print out all of the trailing decimals depending on what number the user inputs. It runs quickly for ...

1 2 3 4 5 9