当前位置: 首页 > 工具软件 > Eclipse Sync > 使用案例 >

解决Eclipse出现File is Out of sync问题

夏侯弘量
2023-12-01

今天做任务,出现了一点问题,把整个项目文件删掉恢复到原始代码,出现File is Out of sync错误,经过研究,终于找到了解决办法。如下:

1)手动刷新。即在eclipse的工程目录中,右键refresh(或者按下F5)。
2)配置eclipse的选项:
    a)eclipse启动时,刷新workspace,即勾选:window—>preferences—>general—>startup and shutdown—>refresh workspace on startup;
    b)window—>preferences—>general—>workspace中:勾选选项:refresh using native hooks or polling和refresh on access;

问题出现原因:eclipse中文件不同步。在eclipse中,工程文件是由eclipse自动扫描添加的,如果在外部修改了工程目录中的文件但又关闭了自动刷新功能,则会引起文件不同步,从而搜索时出现Resource is out of sync with the file system问题(其它功能可能也会如此)。此外,在外部没有修改eclipse工程中的文件也有可能引起该问题。

转载于:https://www.cnblogs.com/hejunbiz/p/3686128.html

 类似资料: