Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
3  
Show some effort for this simple question... – Petar Minchev Aug 17 '11 at 10:44
Show what you've done – adarshr Aug 17 '11 at 10:45

3 Answers

Here's a hint:

  1. Convert the List<Long> to List<String>.
  2. Convert the String[] to List<String>.
  3. Use the beautiful methods in the List interface to get the difference.
share|improve this answer

Something like this perhaps:

long[] longs = { 3, 4, 5, 6 };
String[] strs  = { "3", "4", "5" };

List<Long> notInStrs = new ArrayList<Long>();

Collection<String> strsList = Arrays.asList(strs);
for (long l : longs)
    if (!strsList.contains("" + l))
        notInStrs.add(l);

System.out.println(notInStrs);  // prints [6]

Or, by using the Collections API:

String[] strs  = { "3", "4", "5" };
long[] longs = { 3, 4, 5, 6 };


// Convert to collections:
List<Long> toRemove = new ArrayList<Long>();
for (String str : strs)
    toRemove.add(Long.parseLong(str));

List<Long> longList = new ArrayList<Long>();
for (long l : longs)
    longList.add(l);

// Use Collection.removeAll
List<Long> notInStrs = new ArrayList<Long>(longList);
notInStrs.removeAll(toRemove);


System.out.println(notInStrs);  // prints [6]
share|improve this answer
Maybe nitpicking, but isn't String.valueOf(l) clearer than "" + l? – Petar Minchev Aug 17 '11 at 10:58
You think? Perhaps so. I've always written "" + l, I guess out of laziness. – aioobe Aug 17 '11 at 11:09

Convert to collections, use the API, then convert back to array (if you really must have an array)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.