My android application receive binary data as UDP packet , how should I convert that in android to ASCII ?
Try the following:
byte [] data = (however you extract data from your source); String result = new String(data, "iso-8859-1");