InternetDomainName and publicsuffix list(InternetDomainName和Public Suffix列表)
问题描述
Guava 21 InternetDomainName API使用哪个版本的公共后缀列表(https://publicsuffix.org/)?
分析keyupgrade.spaceforupdate.download
结果为
scala> InternetDomainName.from("keyupgrade.spaceforupdate.download").topPrivateDomain
java.lang.IllegalStateException: Not under a public suffix: keyupgrade.spaceforupdate.download
at com.google.common.base.Preconditions.checkState(Preconditions.java:176)
at com.google.common.net.InternetDomainName.topPrivateDomain(InternetDomainName.java:445)
... 50 elided
但是,根据https://publicsuffix.org/list/public_suffix_list.dat,.download是一个有效的公共后缀。 我认为芭乐21正在使用一个较旧版本的公共后缀列表。有什么方法可以更新它吗?谢谢!
推荐答案
此对话在番石榴邮件列表上同时发生;我将在此处合并它。在邮件列表的最新回复中,Neera用以下代码响应了我的请求:
我正在尝试解析"key upgrade.spaceforupdate.download",其中 根据最新的Mozilla公共后缀,.Download是有效的TLD 列表,但番石榴无法解析它。Scala> InternetDomainName.from("keyupgrade.spaceforupdate.download").topPrivateDomain Java.lang.IlLegalStateException:不在公共后缀下: Key upgrade.spaceforupdate.下载地址: Com.google.common.base.Preconditions.checkState(Preconditions.java:176) 在… Com.google.common.net.InternetDomainName.topPrivateDomain(InternetDomainName.java:445) ...50省略
我想知道这是否可能是Scala特有的问题。正如我提到的,下载已经在PSL中存在很长一段时间了(根据PSL本身的说法,从2014-11-20开始),它在PSL的本地副本中,在版本21构建之前的几年里一直被用来构建Guava。请注意,我在Java中对我们的Head版本进行了测试,得到了预期的输出"spaceforupdat.download":
public static void main(String[] args) {
InternetDomainName top =
InternetDomainName.from("keyupgrade.spaceforupdate.download").topPrivateDomain();
System.out.println(top);
}
带有"明显"后缀的测试有效吗?例如,"www.google.com"的顶级私域应该是"google.com"。请尝试这样做,如果可能的话,尝试使用Java而不是Scala进行测试。我期待着听到这些测试的结果。
这篇关于InternetDomainName和Public Suffix列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:InternetDomainName和Public Suffix列表
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- 转换 ldap 日期 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- 获取数字的最后一位 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01