Advertisement
Guest User

Untitled

a guest
May 24th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public void ActualizarLabelVisor() {
  2. StringBuilder sb = new StringBuilder();
  3. Set<String> res = new HashSet<String>(labelvisor);
  4. for (String y : res) {
  5. sb.append(y + " : " + Collections.frequency(labelvisor, y));
  6. }
  7. txta_detallepedido.setText(sb.toString()));
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement