dll 使用 dll 内的文件
我正在尝试创建一个 dll,客户端应用程序可以将 xml 字符串传递给该 dll,然后将 dll 中的 xslt 文件用于 xml 字符串,然后将结果返回给客户端。
如何让 dll 在其内部查找 xslt 文件?调试显示该进程在我正在使用的测试客户端应用程序的文件夹结构中查找 xslt 文件。
我尝试确保 xslt 文件被识别为 dll 的嵌入资源,因为我在堆栈溢出帖子中看到了这样做。但仍然存在同样的问题。
I'm trying to make a dll that a client app can pass an xml string to and then have an xslt file in the dll be used on the xml string, then return the result back to the client.
How do I get the dll to look for the xslt file within itself? Debugging has shown that the process looks for the xslt file in the folder structure of the test client application I'm using.
I tried making sure the xslt file is identified as an embedded resource of the dll, because I saw to do that in a stack overflow post. Still same problem though.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设使用 C 或 C++,您通常会通过资源文件将 XSLT 样式表文本放入字符串资源中,然后将其取出到内存中,然后将其作为字符串传递到相关的 COM 对象中以执行 XSLT 处理。
Assuming C or C++, you'd typically put the XSLT stylesheet text into a string resource via your resource file, then fish it out into memory, and simply pass it as a string into the relevant COM object to perform the XSLT processing.
您可以自己调用 GetModuleFileName 来获取文件名,打开自己,查找适当的字节(进行一些安排,例如解析 PE 资源),将字节加载到 RAM 中,并将生成的字节数组传递到 XSLT 处理程序中。
一定有更好的方法,但这会起作用。
You could call GetModuleFileName on yourself to get your file name, open yourself, seek to the appropriate byte (takes some arranging e.g. parse PE for resources), load the bytes into RAM, and pass the resulting byte array into the XSLT handler.
There's got to be a better way but this will work.