Windows 7 /Eclipse 文件访问观察点
Win 7 上的 Eclipse [Helios] 有没有办法监视要打开的文件?我是否必须知道应用程序将在哪里执行此操作,或者是否有办法监视正在创建的 java.io 对象/其他内容?
蒂亚·雷内
Is there a way in Eclipse [Helios] on Win 7 to watch for a file to be opened? Do I have to know where the app is going to do so, or is there a way to watch for a java.io object being created/something or other?
tia Rene
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试在
FileInputStream
和/或FileOutputStream
的构造函数上设置断点,并带有条件来检查提供的文件名是否与您的目标文件名匹配(例如,检查采用文件名,请检查采用File
的构造函数上的File.getName()
)。或者或此外,您可以在File
构造函数上设置断点,并带有条件来检查指定的文件名是否是您的目标文件名。如果断点陷阱触发,您可以跟踪堆栈跟踪以查看哪些方法直接或间接访问该文件。
You could try setting breakpoints on the constructors of
FileInputStream
and/orFileOutputStream
with conditions to check whether the filename provided matches your target filename (e.g. check the parameter on the constructors that take a filename, check theFile.getName()
on the constructors that take aFile
). Alternatively or in addition, you could set breakpoints onFile
constructors with a condition to check whether the specified filename is your target filename.If your breakpoint trap trips, you can follow the stacktrace to see what methods are directly or indirectly access the file.