Thủ Thuật Hướng dẫn Convert String to List 2022
Pro đang tìm kiếm từ khóa Convert String to List được Update vào lúc : 2022-12-13 12:34:08 . Với phương châm chia sẻ Mẹo Hướng dẫn trong nội dung bài viết một cách Chi Tiết 2022. Nếu sau khi Read tài liệu vẫn ko hiểu thì hoàn toàn có thể lại Comments ở cuối bài để Ad lý giải và hướng dẫn lại nha.
In this java tutorial we are converting a String to an ArrayList. The steps for conversion are as follows:
1) First split the string using String split() method and assign the substrings into an array of strings. We can split the string based on any character, expression etc.
2) Create an ArrayList and copy the element of string array to newly created ArrayList using Arrays.asList() method. This method returns a list created based on the elements of the specified array.
Program to convert String to ArrayList
In this java program we have a string which contains some numbers with delimiter as comma (,). We are splitting the string based on the delimiter and then assigning those numbers to an array of strings.
Later we are copying all the elements of string array to an ArrayList using the asList() method of Arrays.
import java.util.ArrayList;
import java.util.List;
import java.util.Arrays;
public class JavaExample
public static void main(String args[])
String num = “22,33,44,55,66,77”;
String str[] = num.split(“,”);
List<String> al = new ArrayList<String>();
al = Arrays.asList(str);
for(String s: al)
System.out.println(s);
Output:
22
33
44
55
66
77
Note: In the above example, the delimiter is comma however we can split the string based on any delimiter. For example if the string is hello hi namaste bye then we can split the string using whitespace as delimiter like this
Here we have provided whitespace as delimiter
String str[] = num.split(” “); PreviousNext
Reply
1
0
Chia sẻ
Chia Sẻ Link Down Convert String to List miễn phí
Bạn vừa Read tài liệu Với Một số hướng dẫn một cách rõ ràng hơn về Video Convert String to List tiên tiến và phát triển nhất và Share Link Cập nhật Convert String to List miễn phí.
Hỏi đáp vướng mắc về Convert String to List
Nếu sau khi đọc nội dung bài viết Convert String to List vẫn chưa hiểu thì hoàn toàn có thể lại Comments ở cuối bài để Ad lý giải và hướng dẫn lại nha
#Convert #String #List