Konwertuj ciąg na Char Tray w Javie

String str = "example";
char[] ch = str.toCharArray(); 
Pable Sorren