我正在使用guava-18.0
和java1.6
给出以下代码:
String host = null;
host = new URI(this.domain).getHost();
Pattern p = Pattern.compile("[a-zA-Z]");
Matcher m = p.matcher(host);
if(m.find()){
InternetDomainName domainName = InternetDomainName.from(host);
this.domain = domainName.topPrivateDomain().name();
System.out.println(this.domain);
}
else
this.domain = host;
当运行 ant 进行构建时,它会给出这样的错误消息:
[javac] symbol : method name()
[javac] location: class com.google.common.net.InternetDomainName
[javac] this.domain = domainName.topPrivateDomain().name();
[javac] ^
[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[javac] 1 error
该方法topPrivateDomain
返回一个InternetDomainName
对象,并且它确实有一个名为 name()
的方法。怎么了?
InternetDomainName
没有name()
方法。它一直到 15.0,但在 16.0 中被删除。使用 toString()
.