Qt 使用默认应用程序打开文件

本文介绍了如何使用QDesktopServices的openUrl()函数根据URL类型智能地在本地文件系统或浏览器中打开文件,包括通过指定文件路径进行操作,并处理打开失败的情况。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1. static bool openUrl(const QUrl &url);

The openUrl() function is used to open files located at arbitrary URLs in external applications. For URLs that correspond to resources on the local filing system (where the URL scheme is “file”), a suitable application will be used to open the file; otherwise, a web browser will be used to fetch and display the file.

采用openUrl()函数,可以根据Url的类型,选择一个合适的应用程序(一般是采用默认应用程序)打开该url指向的文件;

static bool openUrl(const QUrl &url);
//QString fileName(qApp->applicationDirPath() + QStringLiteral("要打开的文件"));
QString fileName(“要打开的文件路径”)if (!QDesktopServices::openUrl(QUrl::fromLocalFile(QFileInfo(fileName).absoluteFilePath())))
    {
        QMessageBox::information(this, tr("warning"),
            tr("Failed to open the help guide."),
            QMessageBox::Ok);
    }

参考连接:蘑菇新年快乐

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值