我必须使缓存无效并以编程方式重启Android Studio,是否可能?
如果是,那怎么样?
答案 0 :(得分:0)
经过多次研究后,我能够使用intelliG idea
执行此任务ApplicationEx app =
(ApplicationEx)ApplicationManager.getApplication(); // creating an object of ApplicationEx class
boolean canRestart = app.isRestartCapable(); // Checking whether able to restart or not
if(canRestart)
{
app.restart(true); // restart
}