一、环境介绍
Qt: 5.12.6
操作系统: win10 (64位)
编译器: mingw 32
二、功能介绍
使用代码一键打开系统默认浏览器,使用百度搜索想要内容,也可以打开百度翻译自动翻译内容,也可以打开CSDN搜索内容等。
需要使用的头文件
#include <QDesktopServices> #include <QUrl>
一行代码
QDesktopServices::openUrl(QUrl("https://www.baidu.com/s?ie=UTF-8&wd=我是搜索的内容"));
运行效果:
其他常用的功能总结:
//百度自动搜索想要的内容 https://www.baidu.com/s?ie=UTF-8&wd=我是搜索的内容 //CSDN自动搜索想要的内容 https://so.csdn.net/so/search?from=chrome_plugin&q=我是搜索的内容 //打开百度自动翻译 //中文翻译 https://fanyi.baidu.com/translate#zh/auto/我就是翻译的内容 //英文翻译 https://fanyi.baidu.com/translate#en/auto/我就是翻译的内容 //英文翻译 https://fanyi.baidu.com/translate#en/zh/I am the content of translation //中文翻译 https://fanyi.baidu.com/translate#zh/en/我就是翻译的内容
QDesktopServices::openUrl(QUrl("https://so.csdn.net/so/search?from=chrome_plugin&q=DS小龙哥"));