Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不想使用 dnsjava 或其他第三方库。有什么方法可以找到 A 或 NAPTR 或任何其他记录的 TTL 和端口值?可能正在使用 java.net 包?使用 getallbyName,我可以获得 IP 地址,但如果我还想要 TTL 和端口怎么办。
在此先感谢您的帮助。
1.尝试Ping使用Runtime().getRuntime().exec(),然后从中提取TTL(生存时间)值..
Ping
Runtime().getRuntime().exec()
TTL
2.它工作,Windows我不知道如何使用它Linux。
Windows
Linux