使用番石榴当错误得到专用域名(errors when using Guava to get the

2019-10-21 06:45发布

我使用的guava-18.0java1.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() 有什么问题?

Answer 1:

InternetDomainName没有一个name()方法。 它没有,直到15.0,但它是在16.0删除。 使用toString()



文章来源: errors when using Guava to get the private domain name
标签: ant dns guava