Home > Back-end >  Consult the Java no I will ASCII into a string of letters digital? The search on the net, are very c
Consult the Java no I will ASCII into a string of letters digital? The search on the net, are very c

Time:05-12

Consult the Java no I will ASCII into a string of letters digital? The search on the net, are very complex
thank you

CodePudding user response:

An ASCII code corresponding to one character at a time,

CodePudding user response:

Public static String asciiToString (String value)
{
StringBuffer sbu=new StringBuffer ();
String [] chars=value. The split (", ");
for (int i=0; I & lt; Chars. Length; I++) {
Sbu. Append ((char) Integer. ParseInt (chars [I]));
}
Return sbu. ToString ();
}
  • Related