Windows 7 /Eclipse 文件访问观察点

发布于 2024-10-16 05:34:35 字数 113 浏览 4 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

牵强ㄟ 2024-10-23 05:34:35

您可以尝试在 FileInputStream 和/或 FileOutputStream 的构造函数上设置断点,并带有条件来检查提供的文件名是否与您的目标文件名匹配(例如,检查采用文件名,请检查采用 File 的构造函数上的 File.getName())。或者或此外,您可以在 File 构造函数上设置断点,并带有条件来检查指定的文件名是否是您的目标文件名。

如果断点陷阱触发,您可以跟踪堆栈跟踪以查看哪些方法直接或间接访问该文件。

You could try setting breakpoints on the constructors of FileInputStream and/or FileOutputStream 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 the File.getName() on the constructors that take a File). Alternatively or in addition, you could set breakpoints on File 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文