运行项目时,我有一个URL。
http:// localhost:8084 / blog1_1 / title?uname = 55%22
并且我想从该URL中删除查询字符串,如下所示:
http:// localhost:8084 / blog1_1 / title
您能建议我该怎么做吗?
String url="http://localhost:8084/blog1_1/title?uname=55%22"; String onlyUrl=url.substring(0,url.lastIndexOf("?")); //this has the URL