的我如何分割上的URL鏈接我如何拆分URL鏈接
StringTokenizer st = new StringTokenizer(linkHref, ".ashx?JobID=");;
String community = st.nextToken();
System.out.println(community);
URL鏈接下方
的我如何分割上的URL鏈接我如何拆分URL鏈接
StringTokenizer st = new StringTokenizer(linkHref, ".ashx?JobID=");;
String community = st.nextToken();
System.out.println(community);
URL鏈接下方
String s = "http://example.com/GetJob.ashx?JobID=19358502&JobTitle=Factory%20Workers%20in%20Oldham%20-%20Immediate%20Start%20Now&rad=20&rad_units=miles&pp=25&sort=rv.dt.di&vw=b&re=134&setype=2&tjt=factory&where=oldham&pg=1&avsdm=2015-09-10T05%3a54%3a00-05%3a00";
s = s.substring(s.indexOf("JobID=") + 6);
s = s.substring(0, s.indexOf("&JobTitle"));
System.out.println(s);
什麼是烏拉圭回合的需要oupput字符串的字符串? – Nithinlal
19358502這個值 –
你能代碼它先生,因爲我不能先生的代碼是scrambled –