Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,868 questions

51,791 answers

573 users

How to combine (concatenate) two arrays in Java

2 Answers

0 votes
import java.util.Arrays;
 
public class Main {
    public static void main(String args[]) {
        int[] array1 = {1, 2, 3, 3};
        int[] array2 = {4, 5, 6, 7, 8};
 
        int len1 = array1.length;
        int len2 = array2.length;
         
        int[] combine = new int[len1 + len2];
 
        System.arraycopy(array1, 0, combine, 0, len1);
        System.arraycopy(array2, 0, combine, len1, len2);
 
        System.out.println(Arrays.toString(combine));
    }
}
   
   
   
/*
run:
   
[1, 2, 3, 3, 4, 5, 6, 7, 8]
  
*/

 



answered Jan 15, 2022 by avibootz
edited Feb 17, 2025 by avibootz
0 votes
import java.util.Arrays;
  
public class Main {
    public static void main(String args[]) {
        int[] array1 = {1, 2, 3, 3};
        int[] array2 = {4, 5, 6, 7, 8};
 
        int[] combine = Arrays.copyOf(array1, array1.length + array2.length);
         
        for (int i = 0; i < array2.length; i++) {
            combine[array1.length + i] = array2[i];
        }
          
        System.out.println(Arrays.toString(combine));
    }
}

   
   
/*
run:
   
[1, 2, 3, 3, 4, 5, 6, 7, 8]
  
*/

 



answered Nov 24, 2023 by avibootz
edited Feb 17, 2025 by avibootz
...