Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Java

โปรแกรม Java เพื่อแปลง ArrayList เป็นสตริงและในทางกลับกัน


ในบทความนี้ เราจะเข้าใจวิธีการแปลง arrayList เป็น string และในทางกลับกัน คลาส TheArrayList เป็นอาร์เรย์ที่ปรับขนาดได้ ซึ่งสามารถพบได้ในจาวา ยูทิลิตี้แพคเกจ ความแตกต่างระหว่างอาร์เรย์ในตัวและ ArrayList ใน Java คือขนาดของอาร์เรย์ไม่สามารถแก้ไขได้

ด้านล่างนี้เป็นการสาธิตสิ่งเดียวกัน -

สมมติว่าข้อมูลที่เราป้อนคือ

Input string: Java Program

ผลลัพธ์ที่ต้องการจะเป็น

The array after conversion from string is:
J a v a P r o g r a m

อัลกอริทึม

Step 1 - START
Step 2 - Declare namely
Step 3 - Define the values.
Step 4 - Create an array and add elements to it using the ‘add’ method.
Step 5 - Display the list on the console.
Step 6 - Create another empty array of previous array size.
Step 7 - Convert it into string using the ‘toString’ method.
Step 8 - Iterate over the elements and display the elements on the console.
Step 9 - Stop

ตัวอย่างที่ 1


import java.util.ArrayList;
public class Demo {
   public static void main(String[] args) {
      System.out.println("The required packages have been imported");
      ArrayList input_array= new ArrayList<>();
      input_array.add("Java");
      input_array.add("Python");
      input_array.add("Scala");
      input_array.add("JavaScript");
      System.out.println("The array is defined as: " + input_array);
      String result_string = input_array.toString();
      System.out.println("\nThe result string is: " + result_string);
   }
}

ผลลัพธ์

The required packages have been imported
The array is defined as: [Java, Python, Scala, JavaScript]

The result string is: [Java, Python, Scala, JavaScript]

ตัวอย่างที่ 2

ที่นี่ เราแปลงสตริงเป็นอาร์เรย์

public class Demo {
   public static void main(String args[]){
      String input_string = "Java Program";
      System.out.println("The string is defined as: " + input_string);
      char[] result_array = new char[input_string.length()];
      for (int i = 0; i < input_string.length(); i++) {
         result_array[i] = input_string.charAt(i);
      }
      System.out.println("The array after conversion from string is: " );
      for (char c : result_array) {
         System.out.print(c + " ");
      }
   }
}

ผลลัพธ์

The string is defined as: Java Program
The array after conversion from string is:
J a v a P r o g r a m