Guest User

Untitled

a guest
Jul 17th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. private String limpaLixo(String dataPacoteBinario)
  2. {
  3. String resultado = "";
  4.  
  5. for (int i = 0; i < dataPacoteBinario.length() ; i++ )
  6. {
  7. if(((int)dataPacoteBinario.charAt(i)) > 31)
  8. {
  9. resultado += dataPacoteBinario.charAt(i);
  10. }
  11. }
  12. return resultado;
  13. }
Add Comment
Please, Sign In to add comment