Thay thế phần tử trong List trong Java



Miêu tả vấn đề

Cách thay thế phần tử trong List trong Java?

Giải pháp

Ví dụ sau minh họa cách sử dụng phương thức replaceAll() để thay thế tất cả sự có mặt của một phần tử với phần tử khác trong một List trong Java.

import java.util.*;public class Main {
   public static void main(String[] args) {
      List list = Arrays.asList("one Two three Four five six
      one three Four".split(" "));
      System.out.println("List :"+list);
      Collections.replaceAll(list, "one", "hundread");
      System.out.println("replaceAll: " + list);
   }
}

Kết quả

Code trên sẽ cho kết quả sau:

List :[one, Two, three, Four, five, six, one, three, Four]
replaceAll: [hundread, Two, three, Four, five, six,
hundread, three, Four]

collection_trong_java.jsp