Hi dchambon,
You need to convert it to a Short first:
short abc = 10;
Short a = new Short(abc);
Integer myint = a.intValue();
or also:
Integer myint = (new Short(abc)).intValue();
Hi dchambon,
You need to convert it to a Short first:
short abc = 10;
Short a = new Short(abc);
Integer myint = a.intValue();
or also:
Integer myint = (new Short(abc)).intValue();