解决eclipse: Resource is out of sync with the file system 报错问题

eclipse版本:4.3

在eclipse中搜索时,搜索完之后有时候会弹出错误对话框,错误摘录如下:

Resource is out of sync with the file
system......

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

解决方法:
有两种解决方法:
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;

原文见:http://supershll.blog.163.com/blog/static/37070436201310129945358/

解决eclipse: Resource is out of sync with the file system
报错问题,布布扣,bubuko.com

解决eclipse: Resource is out of sync with the file system
报错问题

时间: 2024-10-24 22:22:12

解决eclipse: Resource is out of sync with the file system 报错问题的相关文章

Eclipse: Resource is out of sync with the file system when publishing to tomcat server on Eclipse

Link: http://stackoverflow.com/questions/4343735/avoiding-resource-is-out-of-sync-with-the-filesystem http://hi.baidu.com/golotus/item/2f9713d03b8f9414d80e441b, 解决方法: 在eclipse中,工程目录右键,选择F5(refresh) 引用: 可能的原因: 是因为在eclipse之外对工程中的resource进行修改引起的:但是,有时没有

Resource is out of sync with the file system 解决办法

出现提示: 在eclipse中搜索.删除文件时,有时候会弹出错误对话框,错误摘录如下:Resource is out of sync with the file system...... 问题分析: 这个问题是由于eclipse中文件不同步引起的.在eclipse中,工程文件是由eclipse自动扫描添加的,如果在外部修改了工程目录中的文件但又关闭了自动刷新功能,则会引起文件不同步, 从而搜索或删除文件时出现Resource is out of sync with the file system

Zend Studio 开发Resource is out of sync with the file system的解决办法

SVN上down下来的项目,本地运行却无法显示页面,经过尝试给模板文件改名就能回避这个问题. 定位到是模板缓存的问题,于是清模板缓存. 但是发现ThinkPHP项目Runtime目录下的缓存文件在删除时候会提示: Resource is out of sync with the file system 原因是由于在不同的文件系统之间修改造成文件系统不同步. 解决方法是在Zend左侧的项目上右键-Refresh.或者F5刷新文件即可. 模板名字不用改名,再试,页面可正常打开.问题解决 建议在设置中

Resource is out of sync with the file system

在sts中,启动run on server时或查看项目文件时报错: Resource is out of sync with the file system: .... 这是文件系统不同步的问题,是因为在eclipse或mycelipse之外对工程中的resource进行修改引起的(或者是由不同的系统间对文件进行修改引起的):但是,有时没有在eclipse或mycelipse之外进行修改,也会报类似的错误. 解决办法:需要手动刷新一下资源管理器. (1)在eclipse或mycelipse中,工

兔子--Resource is out of sync with the file system......

这个问题是由于eclipse中文件不同步引起的.在eclipse中,工程文件是由eclipse自动扫描添加的, 如果在外部修改了工程目录中的文件但又关闭了自动刷新功能,则会引起文件不同步, 从而搜索时出现Resource is out of sync with the file system问题(其它功能可能也会如此). 此外,在外部没有修改eclipse工程中的文件也有可能引起该问题. 解决方法: 有两种解决方法: 1)手动刷新.即在eclipse的工程目录中,右键refresh(或者按下F5

Resource is out of sync with the file system的解决办法

在eclipse中,启动server时报此错,是因为文件系统不同步造成的,解决方法有两个: (1)选中工程,右键,选择F5(手动刷新): (2)Window->Preferences->General->Workspace,选中Refresh automatically(设置eclipse自动刷新).

【Android】Android import和export使用说明 及 export报错:jarlist.cache: Resource is out of sync with the file syst解决

在Android开发export项目时发现有时会报错,内容如下: Problems were encountered during export:  Error exporting PalmIdentify/bin/jarlist.cache: Resource is out of sync with the file system: '/PalmIdentify/bin/jarlist.cache'.    Resource is out of sync with the file syste

解决新建Support7Demos的sample时出现编译错误和运行报错出现的问题

右键New->Other->Android Sample Project->选择Android 4.4.2->选择Support7Demos ,finish. 会出现编译错误 解决如下: 1.把这三个文件导入到Eclipse里, 这三个是库文件,并且勾选COPY到工作空间里选项 如果没有这三个文件,就从这里下载 2.导入三个library工程后,mediarouter会无法编译,打开工程属性在anroid里将api-level改成17,添加依赖工程appcompat 3.就是将刚才

解决cordova命令行方式下build或者run的时候报错问题

phonegap3.0之后就将项目的生成方式做了很大的更改,原来是在eclipse里面修改生成并编译运行,但是3.0之后它的目录结构发生了很大变化,只修改主目录下面的index.html如果不build的话有时候是不起作用的,因为它的platform文件夹中还有各个平台的目录.比如安卓和IOS,在主目录www下面修改index.html之后必须要build才能生效,否则很多时候你会发现修改了不起作用,这是因为在assets目录下还有个www文件夹,真正运行的是这个文件夹下面的index.html