I have list List list = [3,4,5,6] of type long and array String [] array =["3","4","5"]
and i want the array containing elements that are not in Array array ,how to do this in java
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||
|
|
Here's a hint:
|
|||
|
|
|
Something like this perhaps:
Or, by using the Collections API:
|
|||||
|
|
Convert to collections, use the API, then convert back to array (if you really must have an array) |
|||
|
|