I have the following code:
String[] where; where.append(ContactsContract.Contacts.HAS_PHONE_NUMBER + \"=1\"); where.append(ContactsContract.Contacts.IN_VISIB
String[] source = new String[] { "a", "b", "c", "d" }; String[] destination = new String[source.length + 2]; destination[0] = "/bin/sh"; destination[1] = "-c"; System.arraycopy(source, 0, destination, 2, source.length); for (String parts : destination) { System.out.println(parts); }