如何使用 JNI 或 JNA 读取窗口标题?
希望重返发展空间; 主要使用 Java 来调用一些本机 win32 函数(我不想在 .NET 中构建)...
有人能指出我可以使用 Java 从不同运行窗口读取标题的地方吗(JNI/JNA/斯威格)。 假设您知道您尝试挂接的应用程序位于内存空间中的哪个位置。
Looking to get back into the development space; primarily using Java to call some native win32 functions (I don't desire to build in .NET)....
Can someone point me to a place where I can read the title from a differnt running window using Java (JNI/JNA/SWIG). Assume you would know where in the memory space the application you are attempting to hook into is.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 JNA 中:
要使用它:
您可能希望对 HWND 使用正确的结构映射,并且还允许 unicode 支持; 您可以在 JNA 网站 找到该信息以及有关如何执行此操作的更多示例。
GetWindowText 函数的文档位于 MSDN。
JNA 文档位于 jna.dev.java.net
In JNA:
To use it:
You'll probably want to use the proper structure mappings for HWND and also allow unicode support; you can find that information and more examples on how to do that at the JNA website.
The documentation for GetWindowText function is available here in MSDN.
Documentation for JNA is available at jna.dev.java.net