Salin Array di Java 2D

int[][] copy = Arrays.stream(matrix).map(int[]::clone).toArray(int[][]::new);
Zalven