Checkout our demo site to practice selenium https://magento.softwaretestingboard.com/

1 like 0 dislike
200 views
by The go-to Tester (262 points)
retagged by
long[] longs = new long[]{finalid1};

Long[] longObjects = Arrays.toObject(longs);

List<Long> longList = java.util.Arrays.asList(longObjects);

Is this correct ?

1 Answer

0 like 0 dislike
by The go-to Tester (181 points)

Yes, what you are trying to do is, convert Array of Primitives to Array of containers and store it into list. Here is your correceted code.

long[] longs = new long[]{11L, 2L};
Long[] longObjects = ArrayUtils.toObject(longs);
List<Long> longList = java.util.Arrays.asList(longObjects);
 
Hope that helps.


This site is for software testing professionals, where you can ask all your questions and get answers from 1300+ masters of the profession. Click here to submit yours now!

1.4k questions

1.6k answers

866 comments

1.9k users

...