Computer >> 컴퓨터 >  >> 프로그램 작성 >> Java

ArrayList를 문자열로 또는 그 반대로 변환하는 Java 프로그램

<시간/>

이 기사에서는 arrayList를 문자열로 또는 그 반대로 변환하는 방법을 이해할 것입니다. ArrayList 클래스는 크기를 조정할 수 있는 배열로 java.xml 파일에서 찾을 수 있습니다. 유틸리티 패키지. Java의 내장 배열과 ArrayList의 차이점은 배열의 크기를 수정할 수 없다는 것입니다.

아래는 동일한 데모입니다 -

입력이 다음과 같다고 가정 -

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