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?
|
I need to concatenate two String arrays in Java.
What is the easiest way to do this? |
||||
|
|
|
I found a one-line solution from the good old Apache Commons Lang library.
|
|||||||||||||||||||||
|
|
Here's a method that will concatenate 2 arrays of type T (replace the T in the code with your classname in question, this is just pseudocode not generics).
(source: Sun Forum ) |
|||||||||||||||||||||
|
|
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:
|
|||||||||||||||||||||
|
|
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!) |
|||||
|
|
Or with the loved Guava:
|
||||
|
|
|
Using the Java API:
|
|||||||||
|
|
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
|
|||||
|
|
Here's an adaptation of silvertab's solution, with generics retrofitted:
NOTE: See Joachim's answer for a Java 6 solution. Not only does it eliminate the warning; it's also shorter, more efficient and easier to read! |
|||||
|
|
A solution 100% old java and without
|
||||
|
|
|
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). |
|||||
|
|
Here a possible implementation in working code of the pseudo code solution written by silvertab. Thanks silvertab!
Following next is the builder interface. Note: A builder is necessary because in java it is not possible to do
due to generic type erasure:
Here a concrete builder implementing the interface, building a
And finally the application / test:
|
||||
|
|
|
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.
|
||||
|
|
|
An easy, but inefficient, way to do this (generics not included):
|
||||
|
|
|
||||
|
|
|
Here's my slightly improved version of Joachim Sauer's concatAll. It can work on Java 5 or 6, using Java 6's System.arraycopy if it's available at runtime. This method (IMHO) is perfect for Android, as it work on Android <9 (which doesn't have System.arraycopy) but will use the faster method if possible.
|
||||
|
|
|
Look at this elegant solution (if you need other type than char, change it):
You can concatenate a every count of arrays. |
||||
|
|
|
I found I had to deal with the case where the arrays can be null...
|
||||
|
|
|
Please forgive me for adding yet another version to this already long list. I looked at every answer and decided that I really wanted a version with just one parameter in the signature. I also added some argument checking to benefit from early failure with sensible info in case of unexpected input.
|
||||
|
|
|
Wow! lot of complex answers here including some simple ones that depend on external dependencies. how about doing it like this:
|
||||
|
|
|
If you'd like to work with ArrayLists in the solution, you can try this:
|
||||
|
|
|
I tested below code and worked ok Also I'm using library: org.apache.commons.lang.ArrayUtils
Regards |
||||
|
|
|
A simple variation allowing the joining of more than one array:
|
||||
|
|
|
A type independent variation (UPDATED - thanks to Volley for instantiating T):
|
||||
|
|
|
|||||
|
|
||||
|
|
|
Another one based on SilverTab's suggestion, but made to support x number of arguments and not require Java 6. It is also not generic, but I'm sure it could be made generic.
|
||||
|
|
|
The easiest way i could find is as following :
|
||||
|
|
|
This is a converted function for a String array:
|
|||||
|
|
Import java.util.*; String array1[] = {"bla","bla"};
You could replace String by a Type/Class of your liking Im sure this can be made shorter and better, but it works and im to lazy to sort it out further... |
||||
|
|
|
You can try this
U can type cast your array !!!!!! Hope it will help u Cheer :) |
||||
|
|