cancel
Showing results for 
Search instead for 
Did you mean: 

Type cast of BigInteger to Int

Former Member
0 Kudos

Hi All,

I am working on Email Web Service with Web dynpro.

I am getting an error in type casting BigInterger(which was declared in WSDL) to Int. Java is not recognizing this BigInteger. Can any one help me??

Regards,

Theja

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Thejaswi,

Where exactly this happens?

I mean, if you can control this part of code why not to do:


BigInteger bigInt = <...>;
int int = bigInt.intValue();

VS