作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 java API 根据给定的 URL 提取第二个域名。
https://github.com/whois-server-list/public-suffix-list
它基于 Mozilla 的公共(public)后缀列表
。
给出的代码如下:
PublicSuffixListFactory factory = new PublicSuffixListFactory();
PublicSuffixList suffixList = factory.build();
String[] domainArray = new String[10];
domainArray[0] = "swcdn.apple.com";
domainArray[1] = "production-pdt.siriusxm.com";
domainArray[2] = "audio2.spotify.com";
domainArray[3] = "a1935.phobos.apple.com";
domainArray[4] = "r13---sn-ab5l6n7r.c.pack.google.com";
domainArray[5] = "a132.phobos.apple.com";
domainArray[6] = "a1736.phobos.apple.com";
domainArray[7] = "r17---sn-vgqs7n7l.c.android.clients.google.com";
domainArray[8] = "s4.amazonaws.com";
domainArray[9] = "s3.amazonaws.com";
for(String string : domainArray){
String domain = suffixList.getRegistrableDomain(string);
System.out.println(domain);
}
我得到以下输出:
apple.com
siriusxm.com
spotify.com
apple.com
google.com
apple.com
apple.com
google.com
amazonaws.com
null
它适用于大多数域,但对于 s3.amazonaws.com
,它返回 null。然而,对于类似的:s4.amazonaws.com
,它给出了正确的结果。有什么问题吗?
最佳答案
s3.amazonaws.com 包含在 public suffix list 中因此被视为不可注册。 PublicSuffixList.getRegistrableDomain()
在这种情况下返回 null
:
Returns: the registrable domain, null if the domain is not registrable at all
关于Java api public-suffix-list 返回空域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26932655/
我是一名优秀的程序员,十分优秀!