我运行项目时有一个url。http://localhost:8084/blog1\u 1/title?uname=55%22我想从这个url中删除查询字符串,如下所示:http://localhost:8084/blog1\u 1/标题你能告诉我怎么做吗?
0dxa2lsx1#
String url="http://localhost:8084/blog1_1/title?uname=55%22"; String onlyUrl=url.substring(0,url.lastIndexOf("?")); //this has the URL
sg24os4d2#
假设 url 是java字符串:
url
String newURL = url.substring(0, url.indexOf("?"));
我应该做这个把戏。。。
2条答案
按热度按时间0dxa2lsx1#
sg24os4d2#
假设
url
是java字符串:我应该做这个把戏。。。