0
正如我注意到類從谷歌圖書館com.google.common.net.InternetDomainName
containts以下常數:域名的最大長度
checkArgument(name.length() <= MAX_LENGTH, "Domain name too long: '%s':", name);
但RFC-2181:創作InternetDomainName實例過程中,以下
private static final int MAX_LENGTH = 253;
代碼,檢查長度說:
A full domain name is limited to 255 octets (including the separators).
那麼,什麼是有效的最大長度爲域名?
但是單個字節足夠長度,所以我們仍然是一個字節關閉。 – maaartinus
謝謝!看起來我很窮。 – fashuser
@maaartinus,我找到了另一個參考並更新了答案。 –