Char conversion

Please sent me immediately when u get this mssg;;;;;Is there any methods like Integer.parseInt() for converting a String to charecter? Or plz send me a way to read charecter as commandline argument so that it can be used in Switch().
[254 byte] By [Raheshrsa] at [2007-10-3 3:21:32]
# 1
Take a look at String's charAt(int) method: http://java.sun.com/j2se/1.4.2/docs/api/java/lang/String.html
prometheuzza at 2007-7-14 21:13:51 > top of Java-index,Java Essentials,New To Java...
# 2
You could use method from String class toCharArray().String s = "my string";char [] charray = s.toCharArray();
jogurtIRa at 2007-7-14 21:13:51 > top of Java-index,Java Essentials,New To Java...