Is it possible to multiple a BigInteger by a Double in Java?

I have a very large number (number1) stored as a BigInteger, and a double (number2). I plan to multiply number1 and number2, and store the result as a double. Using the multiply() method has not h...