8384858687888990
if (_query == null) return; String[] queries = _query.split("&"); for (String temp : queries) { if (temp.isEmpty() || !temp.contains("=")) continue; String[] key_pair = temp.split("="); query.add(new Tuple(key_pair[0], key_pair[1])); } }
123124125126127128129130
public Url(String url) { this(URI.create(url)); } public Url addParam(String key, String value) { query.add(new Tuple(key, value)); return this; }