dll 使用 dll 内的文件

发布于 2024-11-06 05:59:41 字数 228 浏览 1 评论 0原文

我正在尝试创建一个 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 技术交流群。

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

发布评论

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

评论(2

并安 2024-11-13 05:59:41

假设使用 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.

私藏温柔 2024-11-13 05:59:41

您可以自己调用 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.

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