Guest User

Untitled

a guest
Nov 17th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. final String input = "one=1&two=2";
  2.  
  3. public Map<String, String> decode(String s)
  4. {
  5. if(!s.isEmpty()){
  6. for(int i =0 ; i< s.length(); i++){
  7. s.split("&");
  8.  
  9. }
  10. }
  11.  
  12. }
  13.  
  14. ("one", "1");
  15. ("two", "2");
Add Comment
Please, Sign In to add comment