简体   繁体   中英

How can I convert a String to a char array?

Is there any function to do this kind of job or do one have to parse each char and add it to the array?

Use String#toCharArray() .

char[] chars = "some string".toCharArray();
"read java docs".toCharArray();

Use the String.toCharArray() method.

Use the String.getChars() method.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM