Здравствуйте, возможно ли выполнить подобное? Как перевести символьный массив в строку я знаю, а как наоборот?
char ich[] = {' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ' };
String str;
str = in.next();
len = str.length();
System.out.println("Length your message");
System.out.println(len);
for (i = 0; i < len; i++)
ich[i] = str[i];
String
/**
* Converts this string to a new character array.
*
* @return a newly allocated character array whose length is the length
* of this string and whose contents are initialized to contain
* the character sequence represented by this string.
*/
public char[] toCharArray() {
// Cannot use Arrays.copyOf because of class initialization order issues
char result[] = new char[value.length];
System.arraycopy(value, 0, result, 0, value.length);
return result;
}
Пример: "String".toCharArray() - строка в символьный массив.
/**
* Returns the string representation of the {@code char} array
* argument. The contents of the character array are copied; subsequent
* modification of the character array does not affect the returned
* string.
*
* @param data the character array.
* @return a {@code String} that contains the characters of the
* character array.
*/
public static String valueOf(char data[]) {
return new String(data);
}
Пример: String.valueOf(charArr) - символьный массив в строку.
Виртуальный выделенный сервер (VDS) становится отличным выбором
Часто вижу утверждения, что надо использовать PreparedStatement вместо обычного Statement, чтобы защититься от sql инъекцийКак он защищает?
У меня есть некий бот для телеграмма, как сделать, что бы он сам себя перезапускал?
У меня телефон Samsung J5 с android 60 подскажите, пошагово, как сбросить входящий телефонный звонок?
Использую android устройство и сервер на spring mvc + maven Пытаюсь выслать данные + файл на сервер при помощи RestTeamplateС просто данными все красиво вышло,...