I need to concatenate two String arrays in Java.
void f(String[] first, String[] second) {
String[] both = ???
}
What is the easiest way to do this?
|
5
|
I need to concatenate two String arrays in Java.
What is the easiest way to do this?
|
|||
|
|
|
|
|
||
|
|
|
|
I don't know why the top-rated answer is rated so high (and why can't I comment on it).
doesn't even compile as there is no overloaded addAll which returns a String array. |
||
|
|
|
|
Some of the solutions above dont work for primitive types specifically byte. Can you tell me an implementation which works for the byte[] |
||||
|
|
|
A type independent variation (UPDATED - thanks to Volley for instantiating T):
|
|||
|
|
A simple variation allowing the joining of more than one array:
|
||
|
|
|
|
An easy, but inefficient, way to do this (generics not included):
|
|||
|
|
|
|
It's possible to write a fully generic version that can even be extended to concatenate any number of arrays. This versions require Java 6, as they use Both versions avoid creating any intermediary For two arrays it looks like this:
And for a arbitrary number of arrays (>= 1) it looks like this:
|
||
|
|
|
|
This works, but you need to insert your own error checking.
It's probably not the most efficient, but it doesn't rely on anything other than Java's own API.
|
||
|
|
|
|
I tested below code and worked ok Also I'm using library: org.apache.commons.lang.ArrayUtils
Regards |
||
|
|
|
|
Without duplicates:
|
||
|
|
|
|
If you'd like to work with ArrayLists in the solution, you can try this:
|
||
|
|
|
|
Using the Java API:
|
||||
|
|
|
String[] both = Arrays.asList(first).addAll(Arrays.asList(second)).toArray(); |
||||
|
|
|
I've recently fought problems with excessive memory rotation. If a and/or b are known to be commonly empty, here is another adaption of silvertab's code (generified too):
(In either case, array re-usage behaviour shall be clearly JavaDoced!) |
||||
|
|
|
Here's an adaptation of silvertab's solution, with generics retrofitted:
The code does generate an unchecked warning. Gurus, can we get rid of that? EDIT: The unchecked warning can't be eliminated. NOTE: See saua's answer for a Java 6 solution. Not only does it eliminate the warning; it's also shorter and easier to read! |
||||||||||
|
|
|
Using only Javas own API:
Now, this code ist not the most efficient, but it relies only on standard java classes and is easy to understand. It works for any number of String[] (even zero arrays). |
||||
|
|
|
The Functional Java library has an array wrapper class that equips arrays with handy methods like concatenation.
...and then
To get the unwrapped array back out, call
|
|||
|
|
|
|
I found a one-line solution from the good old Apache Commons Lang library. ArrayUtils.addAll(Object[], Object[]). Code:
|
||||||||||||||||
|
|
|
Here's a method that will concatenate 2 arrays of type T
(source: Sun Forum ) |
||||||||||||||
|