以编程方式确定 AcroRd32.exe 路径并打印它!

发布于 2024-11-07 07:08:46 字数 188 浏览 1 评论 0原文

如何通过.net代码找到系统上安装的adobe路径。 稍后需要将此路径作为参数发送给打印的函数 pdf文档...后面的部分处理。

但我的问题是打印需要处理任何系统,但因为 我根据我的系统硬编码了 adobe 路径,它不适用于其他系统 具有不同版本 adobe 的系统。

我需要一个解决方案来使 adobe 文件在任何系统上兼容。

How do i find the installed adobe path on the system through .net code.
Later this path needs to be sent as a parameter to a function which prints
a pdf document...The later part is handled.

But my question is the print needs to be handled any system, but since
I hard coded the adobe path according to my system it doesn't work on other
systems with different versions of adobe.

I needed a solution to make adobe file compatible on any system.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

真心难拥有 2024-11-14 07:08:46

您可以使用 FileAssociationInfo 类来查找有关处理 .pdf 文件的应用程序的信息。

这个SO问题有一个示例查询图标,您应该能够调整它以查询应用程序

You could use the FileAssociationInfo class to find out information about the application handling .pdf files.

This SO question has an example querying the icon, you should be able to adapt it to query the application pa

凝望流年 2024-11-14 07:08:46

还有另一个SO问题用稍微不同的方法涵盖了您的问题。不要尝试自己获取路径,请使用已经知道如何处理 pdf 的操作系统:

Process p = new Process( );
p.StartInfo = new ProcessStartInfo( )
{
    CreateNoWindow = true,
    Verb = "print",
    FileName = path //put the correct path here
};
p.Start( );

这段简短的代码片段使用操作系统来确定哪个应用程序能够打印该文件。除了 PDF 之外,您还可以将此代码片段用于各种文件类型。

There is also another SO question covering your problem with a slightly different approach. Don't try to get the path by yourself, use the operating system that already knows how to handle pdfs:

Process p = new Process( );
p.StartInfo = new ProcessStartInfo( )
{
    CreateNoWindow = true,
    Verb = "print",
    FileName = path //put the correct path here
};
p.Start( );

This short snippet uses the operating system to determine which application is able to print the file. Besides PDF you can use this snippet for various file types.

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