从url中获得域名

import java.net.MalformedURLException;
import java.net.URL; /**
*
* @author csh
*
*/
public class AAAA { public static void main(String[] args) {
String str = "http://new.dongying.gov.cn/art/2018/8/31/art_43576_3069835.html";
URL url=null;
try {
url = new URL(str);
String host = url.getHost();
System.out.println(host);
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} }
}

结果显示:

new.dongying.gov.cn

上一篇:python 从url中提取域名和path


下一篇:替换url中某个参数的值或是添加某个参数的方法(js 分页上下页可以使用)