标签: android networking android-intent dns
由于某些外部事件,我想在Android应用程序中刷新DNS。 我已经注意到Android系统代码使用了以下内容:
final Intent intent = new Intent(Intent.ACTION_CLEAR_DNS_CACHE);
清除DNS缓存,但在用户代码中似乎不可用。 还有其他选择吗? 谢谢。