Convertir ArrayList
Pour convertir un ArrayList
// Define your ArrayList of strings List<String> stockList = new ArrayList<>(); stockList.add("stock1"); stockList.add("stock2"); // Create a new String array with the same size as the ArrayList int arraySize = stockList.size(); String[] stockArr = new String[arraySize]; // Copy the ArrayList elements into the String array using toArray() stockList.toArray(stockArr); // Print the contents of the String array for (String s : stockArr) { System.out.println(s); }
Cette solution consiste à créer un nouveau tableau String de la même taille que ArrayList, puis à utiliser la méthode toArray() pour copier les éléments ArrayList dans le nouveau tableau. Cette approche garantit que la conversion est effectuée correctement sans aucune exception.
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!