Dada una string, la tarea es convertirla en una lista de caracteres en Java.
Ejemplos:
Input: String = "Geeks" Output: [G, e, e, k, s] Input: String = "GeeksForGeeks" Output: [G, e, e, k, s, F, o, r, G, e, e, k, s]
A continuación se muestran las diversas formas de hacerlo:
- método ingenuo
Acercarse:
- Consigue la cuerda.
- Cree una lista de caracteres vacía.
- Agregue cada carácter de String a la Lista.
- Devolver la Lista.
A continuación se muestra la implementación del enfoque anterior:
// Java program to illustrate
// Converting a String to a List
// of Characters
import
java.util.*;
// Java program to convert
// a String to a List of Characters
class
GFG {
// Function to convert String
// to List of Characters
public
static
List<Character>
convertStringToCharList(String str)
{
// Create an empty List of character
List<Character> chars =
new
ArrayList<>();
// For each character in the String
// add it to the List
for
(
char
ch : str.toCharArray()) {
chars.add(ch);
}
// return the List
return
chars;
}
// Driver code
public
static
void
main(String[] args)
{
// Get the String to be converted
String str =
"Geek"
;
// Get the List of Character
List<Character>
chars = convertStringToCharList(str);
// Print the list of characters
System.out.println(chars);
}
}
Producción:[G, e, e, k]
- Usando flujo de Java 8:
Acercarse:
- Consigue la cuerda.
- Crear una lista de personajes.
- Convierta a String a IntStream usando el método chars().
- Convertir IntStream a Stream
utilizando el método mapToObj(). - Recopile los elementos como una lista de caracteres usando recopilar()
- Devolver la Lista.
A continuación se muestra la implementación del enfoque anterior:
// Java program to illustrate
// Converting a String to a List
// of Characters
import
java.util.*;
import
java.util.stream.Collectors;
// Java program to convert
// a String to a List of Characters
class
GFG {
// Function to convert String
// to List of Characters
public
static
List<Character>
convertStringToCharList(String str)
{
// Create an empty List of character
List<Character> chars = str
// Convert to String to IntStream
.chars()
// Convert IntStream to Stream<Character>
.mapToObj(e -> (
char
)e)
// Collect the elements as a List Of Characters
.collect(Collectors.toList());
// return the List
return
chars;
}
// Driver code
public
static
void
main(String[] args)
{
// Get the String to be converted
String str =
"Geek"
;
// Get the List of Character
List<Character>
chars = convertStringToCharList(str);
// Print the list of characters
System.out.println(chars);
}
}
Producción:[G, e, e, k]
- Usando flujo de Java 8:
Acercarse:
- Consigue la cuerda.
- Use la interfaz AbstractList para convertir la string en una lista de caracteres
- Devolver la Lista.
A continuación se muestra la implementación del enfoque anterior:
import
java.util.*;
// Java program to convert
// a String to a List of Characters
class
GFG {
// Function to convert String
// to List of Characters
public
static
List<Character>
convertStringToCharList(String str)
{
return
new
AbstractList<Character>() {
@Override
public
Character get(
int
index)
{
return
str.charAt(index);
}
@Override
public
int
size()
{
return
str.length();
}
};
}
// Driver code
public
static
void
main(String[] args)
{
// Get the String to be converted
String str =
"Geek"
;
// Get the List of Character
List<Character>
chars = convertStringToCharList(str);
// Print the list of characters
System.out.println(chars);
}
}
Producción:[G, e, e, k]
Publicación traducida automáticamente
Artículo escrito por chaitanyachitturi y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA