Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2013
844
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. 127.0.0.1:80
  2. 127.0.0.1.443
  3. 127.0.0.1.3306
  4.  
  5. proxies = everyLine.split("\n");
  6.  
  7. String[] lines = everyLine.split("\n");
  8. String[][] proxies = new String[lines.length][];
  9. int i=0;
  10. for ( String line : lines )
  11. {
  12. proxies[i++] = line.split(":");
  13. }
  14.  
  15. String []proxies = everyLine.split("\n");
  16. for(int i=0;i<proxies.length;i++){
  17. String[] anotherDimention= proxies[i].split(":");
  18. // do something useful with it
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement