How to copy char array into another in Java

2 Answers

0 votes
// public static void arraycopy(Object src, int srcPos, Object dest, int destPos, int length)
 
public class Example {
    public static void main(String[] args) {
              
        char[] src = { 'a', 'b', 'c', 'd', 'e', 'f', 'g'};
        char[] dest = new char[7];
  
        System.arraycopy(src, 0, dest, 0, src.length);
         
        for (char ch : dest) 
            System.out.println(ch);
    }
}
 
 
 
/*
run:
  
a
b
c
d
e
f
g
  
*/

 



answered Jan 16, 2016 by avibootz
edited Aug 15, 2022 by avibootz
0 votes
// public static void arraycopy(Object src, int srcPos, Object dest, int destPos, int length)
 
public class Example {
    public static void main(String[] args) {
              
        char[] src = { 'a', 'b', 'c', 'd', 'e', 'f', 'g'};
        char[] dest = new char[src.length];
  
        System.arraycopy(src, 0, dest, 0, src.length);
         
        for (char ch : dest) 
            System.out.println(ch);
    }
}
 
 
 
/*
run:
  
a
b
c
d
e
f
g
  
*/

 



answered Jan 16, 2016 by avibootz
edited Aug 15, 2022 by avibootz

Related questions

1 answer 210 views
2 answers 193 views
193 views asked Aug 15, 2022 by avibootz
1 answer 146 views
1 answer 154 views
154 views asked Aug 15, 2022 by avibootz
1 answer 216 views
1 answer 120 views
...