Win32 快捷方式操作助手类(Lnk快捷方式)

2024-01-25 00:44

本文主要是介绍Win32 快捷方式操作助手类(Lnk快捷方式),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

将快捷方式的操作做了一个简单封装, 方便使用.

//解析Lnk内容
{CLnkHelper obj;obj.Load(_T("123.lnk"));SHELL_LINK_INFO info = obj.GetInfo();//TODO 使用info的内容
}//创建(另存为)快捷方式
{CLnkHelper obj;SHELL_LINK_INFO info;//TODO 修改info的内容obj.SetInfo(info);obj.Save(_T("456.lnk"));
}

CLnkHelper.h

#pragma once#include <stdint.h>
#include <string>
#include <shobjidl.h>#ifdef _UNICODE
using _tstring = std::wstring;
using _tfstream = std::wfstream;
#else
using _tstring = std::string;
using _tfstream = std::fstream;
#endiftypedef struct _SHELL_LINK_INFO
{_tstring strFile;       //目标路径_tstring strDesc;       //描述_tstring strArgs;       //参数_tstring strDir;        //工作目录_tstring strIconPath;   //图标路径_tstring strPathRel;    //相对路径WORD wHotkey;           //快捷键int iShowCmd;           //显示命令int iIcon;              //图标索引_SHELL_LINK_INFO():wHotkey(0),iShowCmd(0),iIcon(0){}}SHELL_LINK_INFO;class CLnkHelper
{
public:CLnkHelper();~CLnkHelper();//// @brief: 加载快捷方式// @param: strFile          文件路径// @ret: bool               操作结果// {@link https://learn.microsoft.com/zh-cn/windows/win32/api/objidl/nf-objidl-ipersistfile-load}.bool Load(const _tstring& strFile);//// @brief: 快捷方式保存// @param: strFile          文件路径// @ret: bool               操作结果// {@link https://learn.microsoft.com/zh-cn/windows/win32/api/objidl/nf-objidl-ipersistfile-save}.bool Save(const _tstring& strFile);//// @brief: 获取信息// @param: void// @ret: SHELL_LINK_INFO    信息内容SHELL_LINK_INFO GetInfo() const;//// @brief: 设置信息// @param: info             信息内容// @ret: bool               操作结果bool SetInfo(const SHELL_LINK_INFO& info);//// @remark // @brief: 尝试查找快捷方式目标// @param: hwnd             对话框的父窗口的句柄// @param: fFlags           操作标志// @ret: bool               操作结果// {@link https://learn.microsoft.com/zh-cn/windows/win32/api/shobjidl_core/nf-shobjidl_core-ishelllinka-resolve}.bool Resolve(HWND hwnd, DWORD fFlags = SLR_NO_UI);//// @brief: 获取/设置目标路径// @param: strFile          目标路径// @param: fFlags           路径类型标志(SLGP_SHORTPATH, SLGP_RAWPATH, SLGP_RELATIVEPRIORITY)// @ret: bool               操作结果// {@link https://learn.microsoft.com/zh-cn/windows/win32/api/shobjidl_core/nf-shobjidl_core-ishelllinka-getpath}.// {@link https://learn.microsoft.com/zh-cn/windows/win32/api/shobjidl_core/nf-shobjidl_core-ishelllinka-setpath}.bool GetPath(_tstring& strFile, DWORD fFlags = SLGP_RAWPATH) const;_tstring GetPath(DWORD fFlags = SLGP_RAWPATH) const;bool SetPath(const _tstring& strFile);//// @brief: 获取/设置描述文本// @param: strDesc          描述文本// @ret: bool               操作结果// {@link https://learn.microsoft.com/zh-cn/windows/win32/api/shobjidl_core/nf-shobjidl_core-ishelllinka-getdescription}.// {@link https://learn.microsoft.com/zh-cn/windows/win32/api/shobjidl_core/nf-shobjidl_core-ishelllinka-setdescription}.bool GetDescription(_tstring& strDesc) const;_tstring GetDescription() const;bool SetDescription(const _tstring& strDesc);//// @brief: 获取/设置工作目录// @param: strDir           工作目录// @ret: bool               操作结果// {@link https://learn.microsoft.com/zh-cn/windows/win32/api/shobjidl_core/nf-shobjidl_core-ishelllinka-getworkingdirectory}.// {@link https://learn.microsoft.com/zh-cn/windows/win32/api/shobjidl_core/nf-shobjidl_core-ishelllinka-setworkingdirectory}.bool GetWorkingDirectory(_tstring& strDir) const;_tstring GetWorkingDirectory() const;bool SetWorkingDirectory(const _tstring& strDir);//// @brief: 获取/设置命令行参数// @param: strArgs          命令行参数// @ret: bool               操作结果// {@link https://learn.microsoft.com/zh-cn/windows/win32/api/shobjidl_core/nf-shobjidl_core-ishelllinka-getarguments}.// {@link https://learn.microsoft.com/zh-cn/windows/win32/api/shobjidl_core/nf-shobjidl_core-ishelllinka-setarguments}.bool GetArguments(_tstring& strArgs) const;_tstring GetArguments() const;bool SetArguments(const _tstring& strArgs);//// @brief: 获取/设置快捷键// @param: bModifier        修饰键(HOTKEYF_ALT, HOTKEYF_CONTROL, HOTKEYF_EXT, HOTKEYF_SHIFT)// @param: bKey             普通键// @ret: bool               操作结果// {@link https://learn.microsoft.com/zh-cn/windows/win32/api/shobjidl_core/nf-shobjidl_core-ishelllinka-gethotkey}.// {@link https://learn.microsoft.com/zh-cn/windows/win32/api/shobjidl_core/nf-shobjidl_core-ishelllinka-sethotkey}.bool GetHotkey(BYTE& bModifier, BYTE& bKey) const;WORD GetHotkey() const;bool SetHotkey(BYTE bModifier, BYTE bKey);bool SetHotkey(WORD wHotkey);//// @brief: 获取/设置显示命令// @param: iShowCmd         显示命令(SW_SHOWNORMAL, SW_SHOWMAXIMIZED, SW_SHOWMINIMIZED)// @ret: bool               操作结果// {@link https://learn.microsoft.com/zh-cn/windows/win32/api/shobjidl_core/nf-shobjidl_core-ishelllinka-getshowcmd}.// {@link https://learn.microsoft.com/zh-cn/windows/win32/api/shobjidl_core/nf-shobjidl_core-ishelllinka-setshowcmd}.bool CLnkHelper::GetShowCmd(int& iShowCmd) const;int CLnkHelper::GetShowCmd() const;bool CLnkHelper::SetShowCmd(int iShowCmd);//// @brief: 获取/设置图标位置// @param: strIconPath      图标路径// @param: iIcon            图标索引// @ret: bool               操作结果// {@link https://learn.microsoft.com/zh-cn/windows/win32/api/shobjidl_core/nf-shobjidl_core-ishelllinka-geticonlocation}.// {@link https://learn.microsoft.com/zh-cn/windows/win32/api/shobjidl_core/nf-shobjidl_core-ishelllinka-seticonlocation}.bool GetIconLocation(_tstring& strIconPath, int& iIcon) const;_tstring GetIconLocation(int* piIcon = nullptr) const;bool SetIconLocation(const _tstring& IconPath, int iIcon);//// @brief: 设置相对路径// @param: strPathRel       相对路径// @ret: bool               操作结果// {@link https://learn.microsoft.com/zh-cn/windows/win32/api/shobjidl_core/nf-shobjidl_core-ishelllinka-setrelativepath}.bool GetRelativePath(_tstring& strPathRel) const;_tstring GetRelativePath() const;bool SetRelativePath(const _tstring& strPathRel);private://// @brief: 初始化// @ret: bool               操作结果bool Initialized();//// @brief: 反初始化// @ret: void               无void Uninitialize();private:IShellLink* m_SheelLink;    //Shell 链接接口对象指针IPersistFile* m_ppf;        //存储链接信息接口对象指针bool m_bInit;
};

CLnkHelper.cpp

#include "CLnkHelper.h"
#include <shlguid.h>CLnkHelper::CLnkHelper():m_SheelLink(nullptr),m_ppf(nullptr),m_bInit(false)
{this->Initialized();
}CLnkHelper::~CLnkHelper()
{this->Uninitialize();
}bool CLnkHelper::Initialized()
{HRESULT hr = S_OK;hr = ::CoInitializeEx(nullptr, COINIT_MULTITHREADED);if (FAILED(hr)){return false;}m_bInit = true;hr = ::CoCreateInstance(CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER, IID_IShellLink, (LPVOID*)&m_SheelLink);if (FAILED(hr)){return false;}hr = m_SheelLink->QueryInterface(IID_IPersistFile, (void**)&m_ppf);if (FAILED(hr)){return false;}return true;
}void CLnkHelper::Uninitialize()
{if (m_ppf){m_ppf->Release();m_ppf = nullptr;}if (m_SheelLink){m_SheelLink->Release();m_SheelLink = nullptr;}if (m_bInit){(void)::CoUninitialize();}
}bool CLnkHelper::Load(const _tstring& strFile)
{HRESULT hr = S_OK;if (!m_ppf){return false;}hr = m_ppf->Load(strFile.c_str(), STGM_READWRITE);if (FAILED(hr)){return false;}return true;
}bool CLnkHelper::Save(const _tstring& strFile)
{HRESULT hr = S_OK;if (!m_ppf){return false;}hr = m_ppf->Save(strFile.c_str(), true);return SUCCEEDED(hr);
}SHELL_LINK_INFO CLnkHelper::GetInfo() const
{SHELL_LINK_INFO info;if (m_SheelLink){WIN32_FIND_DATA wfd = { 0 };TCHAR szBuf[MAX_PATH * 4] = { 0 };HRESULT hr = S_OK;hr = m_SheelLink->GetPath(szBuf, _countof(szBuf), &wfd, SLGP_RAWPATH);if (SUCCEEDED(hr)){info.strFile = szBuf;}hr = m_SheelLink->GetPath(szBuf, _countof(szBuf), &wfd, SLGP_RELATIVEPRIORITY);if (SUCCEEDED(hr)){info.strPathRel = szBuf;}hr = m_SheelLink->GetDescription(szBuf, _countof(szBuf));if (SUCCEEDED(hr)){info.strDesc = szBuf;}hr = m_SheelLink->GetWorkingDirectory(szBuf, _countof(szBuf));if (SUCCEEDED(hr)){info.strDir = szBuf;}hr = m_SheelLink->GetArguments(szBuf, _countof(szBuf));if (SUCCEEDED(hr)){info.strArgs = szBuf;}int iIcon = 0;hr = m_SheelLink->GetIconLocation(szBuf, _countof(szBuf), &iIcon);if (SUCCEEDED(hr)){info.strIconPath = szBuf;info.iIcon = iIcon;}int iShowCmd = 0;hr = m_SheelLink->GetShowCmd(&iShowCmd);if (SUCCEEDED(hr)){info.iShowCmd = iShowCmd;}WORD wHotkey = 0;hr = m_SheelLink->GetHotkey(&wHotkey);if (SUCCEEDED(hr)){info.wHotkey = wHotkey;}}return info;
}bool CLnkHelper::SetInfo(const SHELL_LINK_INFO& info)
{if (!m_SheelLink){return false;}m_SheelLink->SetPath(info.strFile.c_str());m_SheelLink->SetRelativePath(info.strPathRel.c_str(), 0);m_SheelLink->SetDescription(info.strDesc.c_str());m_SheelLink->SetArguments(info.strArgs.c_str());m_SheelLink->SetIconLocation(info.strIconPath.c_str(), info.iIcon);m_SheelLink->SetWorkingDirectory(info.strDir.c_str());m_SheelLink->SetHotkey(info.wHotkey);m_SheelLink->SetShowCmd(info.iShowCmd);return true;
}bool CLnkHelper::Resolve(HWND hwnd, DWORD fFlags)
{if (!m_SheelLink){return false;}HRESULT hr = S_OK;hr = m_SheelLink->Resolve(hwnd, fFlags);return SUCCEEDED(hr);
}bool CLnkHelper::GetPath(_tstring& strFile, DWORD fFlags/* = SLGP_RAWPATH*/) const
{if (!m_SheelLink){return false;}WIN32_FIND_DATA wfd = { 0 };TCHAR szBuf[MAX_PATH * 4] = { 0 };HRESULT hr = S_OK;hr = m_SheelLink->GetPath(szBuf, _countof(szBuf), &wfd, fFlags);if (SUCCEEDED(hr)){strFile = szBuf;}return SUCCEEDED(hr);
}_tstring CLnkHelper::GetPath(DWORD fFlags/* = SLGP_RAWPATH*/) const
{if (!m_SheelLink){return _tstring();}WIN32_FIND_DATA wfd = { 0 };TCHAR szBuf[MAX_PATH * 4] = { 0 };HRESULT hr = S_OK;hr = m_SheelLink->GetPath(szBuf, _countof(szBuf), &wfd, fFlags);if (SUCCEEDED(hr)){return szBuf;}return _tstring();
}bool CLnkHelper::SetPath(const _tstring& strFile)
{if (!m_SheelLink){return false;}HRESULT hr = S_OK;hr = m_SheelLink->SetPath(strFile.c_str());return SUCCEEDED(hr);
}bool CLnkHelper::GetDescription(_tstring& strDesc) const
{if (!m_SheelLink){return false;}HRESULT hr = S_OK;TCHAR szBuf[MAX_PATH * 4] = { 0 };hr = m_SheelLink->GetDescription(szBuf, _countof(szBuf));if (SUCCEEDED(hr)){strDesc = szBuf;}return SUCCEEDED(hr);
}_tstring CLnkHelper::GetDescription() const
{if (!m_SheelLink){return _tstring();}HRESULT hr = S_OK;TCHAR szBuf[MAX_PATH * 4] = { 0 };hr = m_SheelLink->GetDescription(szBuf, _countof(szBuf));if (SUCCEEDED(hr)){return szBuf;}return _tstring();
}bool CLnkHelper::SetDescription(const _tstring& strDesc)
{if (!m_SheelLink){return false;}HRESULT hr = S_OK;hr = m_SheelLink->SetDescription(strDesc.c_str());return SUCCEEDED(hr);
}bool CLnkHelper::GetWorkingDirectory(_tstring& strDir) const
{if (!m_SheelLink){return false;}HRESULT hr = S_OK;TCHAR szBuf[MAX_PATH * 4] = { 0 };hr = m_SheelLink->GetWorkingDirectory(szBuf, _countof(szBuf));if (SUCCEEDED(hr)){strDir = szBuf;}return SUCCEEDED(hr);
}_tstring CLnkHelper::GetWorkingDirectory() const
{if (!m_SheelLink){return _tstring();}HRESULT hr = S_OK;TCHAR szBuf[MAX_PATH * 4] = { 0 };hr = m_SheelLink->GetWorkingDirectory(szBuf, _countof(szBuf));if (SUCCEEDED(hr)){return szBuf;}return _tstring();
}bool CLnkHelper::SetWorkingDirectory(const _tstring& strDir)
{if (!m_SheelLink){return false;}HRESULT hr = S_OK;hr = m_SheelLink->SetWorkingDirectory(strDir.c_str());return SUCCEEDED(hr);
}bool CLnkHelper::GetArguments(_tstring& strArgs) const
{if (!m_SheelLink){return false;}HRESULT hr = S_OK;TCHAR szBuf[MAX_PATH * 4] = { 0 };hr = m_SheelLink->GetArguments(szBuf, _countof(szBuf));if (SUCCEEDED(hr)){strArgs = szBuf;}return SUCCEEDED(hr);
}_tstring CLnkHelper::GetArguments() const
{if (!m_SheelLink){return _tstring();}HRESULT hr = S_OK;TCHAR szBuf[MAX_PATH * 4] = { 0 };hr = m_SheelLink->GetArguments(szBuf, _countof(szBuf));if (SUCCEEDED(hr)){return szBuf;}return _tstring();
}bool CLnkHelper::SetArguments(const _tstring& strArgs)
{if (!m_SheelLink){return false;}HRESULT hr = S_OK;hr = m_SheelLink->SetArguments(strArgs.c_str());return SUCCEEDED(hr);
}bool CLnkHelper::GetHotkey(BYTE& bModifier, BYTE& bKey) const
{if (!m_SheelLink){return false;}HRESULT hr = S_OK;WORD wHotkey = 0;hr = m_SheelLink->GetHotkey(&wHotkey);if (SUCCEEDED(hr)){bModifier = HIBYTE(wHotkey);bKey = LOBYTE(wHotkey);}return SUCCEEDED(hr);
}WORD CLnkHelper::GetHotkey() const
{if (!m_SheelLink){return 0;}HRESULT hr = S_OK;WORD wHotkey = 0;hr = m_SheelLink->GetHotkey(&wHotkey);if (SUCCEEDED(hr)){return wHotkey;}return 0;
}bool CLnkHelper::SetHotkey(BYTE bModifier, BYTE bKey)
{if (!m_SheelLink){return false;}HRESULT hr = S_OK;hr = m_SheelLink->SetHotkey(MAKEWORD(bKey, bModifier));return SUCCEEDED(hr);
}bool CLnkHelper::SetHotkey(WORD wHotkey)
{if (!m_SheelLink){return false;}HRESULT hr = S_OK;hr = m_SheelLink->SetHotkey(wHotkey);return SUCCEEDED(hr);
}bool CLnkHelper::GetShowCmd(int& iShowCmd) const
{if (!m_SheelLink){return false;}HRESULT hr = S_OK;hr = m_SheelLink->GetShowCmd(&iShowCmd);return SUCCEEDED(hr);
}int CLnkHelper::CLnkHelper::GetShowCmd() const
{if (!m_SheelLink){return 0;}HRESULT hr = S_OK;int iShowCmd = 0;hr = m_SheelLink->GetShowCmd(&iShowCmd);if (SUCCEEDED(hr)){return iShowCmd;}return 0;
}bool CLnkHelper::SetShowCmd(int iShowCmd)
{if (!m_SheelLink){return false;}HRESULT hr = S_OK;hr = m_SheelLink->SetShowCmd(iShowCmd);return SUCCEEDED(hr);
}bool CLnkHelper::GetIconLocation(_tstring& IconPath, int& iIcon) const
{if (!m_SheelLink){return false;}HRESULT hr = S_OK;TCHAR szBuf[MAX_PATH * 4] = { 0 };hr = m_SheelLink->GetIconLocation(szBuf, _countof(szBuf), &iIcon);if (SUCCEEDED(hr)){IconPath = szBuf;}return SUCCEEDED(hr);
}_tstring CLnkHelper::GetIconLocation(int* piIcon/* = nullptr*/) const
{if (!m_SheelLink){return _tstring();}HRESULT hr = S_OK;TCHAR szBuf[MAX_PATH * 4] = { 0 };int iIcon = 0;hr = m_SheelLink->GetIconLocation(szBuf, _countof(szBuf), &iIcon);if (SUCCEEDED(hr)){if (piIcon){*piIcon = iIcon;}return szBuf;}return _tstring();
}bool CLnkHelper::SetIconLocation(const _tstring& IconPath, int iIcon)
{if (!m_SheelLink){return false;}HRESULT hr = S_OK;hr = m_SheelLink->SetIconLocation(IconPath.c_str(), iIcon);return SUCCEEDED(hr);
}bool CLnkHelper::GetRelativePath(_tstring& strPathRel) const
{if (!m_SheelLink){return false;}WIN32_FIND_DATA wfd = { 0 };TCHAR szBuf[MAX_PATH * 4] = { 0 };HRESULT hr = S_OK;hr = m_SheelLink->GetPath(szBuf, _countof(szBuf), &wfd, SLGP_RELATIVEPRIORITY);if (SUCCEEDED(hr)){strPathRel = szBuf;}return SUCCEEDED(hr);
}_tstring CLnkHelper::GetRelativePath() const
{if (!m_SheelLink){return _tstring();}WIN32_FIND_DATA wfd = { 0 };TCHAR szBuf[MAX_PATH * 4] = { 0 };HRESULT hr = S_OK;hr = m_SheelLink->GetPath(szBuf, _countof(szBuf), &wfd, SLGP_RELATIVEPRIORITY);if (SUCCEEDED(hr)){return szBuf;}return _tstring();
}bool CLnkHelper::SetRelativePath(const _tstring& strRelativePath)
{if (!m_SheelLink){return false;}HRESULT hr = S_OK;hr = m_SheelLink->SetRelativePath(strRelativePath.c_str(), 0);return SUCCEEDED(hr);
}

测试

main.cpp

#include <iostream>
#include <vector>
#include <map>
#include <stdarg.h>
#include <tchar.h>
#include <windows.h>
#include <thread>
#include <strsafe.h>
#include "Win32Utils/CLnkHelper.h"
#include "Win32Utils/CPathUtils.h"int _tmain(int argc, LPCTSTR argv[])
{setlocale(LC_ALL, "");CLnkHelper obj;obj.Load(_T("123.lnk"));SHELL_LINK_INFO info = obj.GetInfo();obj.SetInfo(info);obj.Save(_T("123.lnk"));return 0;
}

这篇关于Win32 快捷方式操作助手类(Lnk快捷方式)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/641575

相关文章

Python 中的 with open文件操作的最佳实践

《Python中的withopen文件操作的最佳实践》在Python中,withopen()提供了一个简洁而安全的方式来处理文件操作,它不仅能确保文件在操作完成后自动关闭,还能处理文件操作中的异... 目录什么是 with open()?为什么使用 with open()?使用 with open() 进行

Linux ls命令操作详解

《Linuxls命令操作详解》通过ls命令,我们可以查看指定目录下的文件和子目录,并结合不同的选项获取详细的文件信息,如权限、大小、修改时间等,:本文主要介绍Linuxls命令详解,需要的朋友可... 目录1. 命令简介2. 命令的基本语法和用法2.1 语法格式2.2 使用示例2.2.1 列出当前目录下的文

Mysql表的简单操作(基本技能)

《Mysql表的简单操作(基本技能)》在数据库中,表的操作主要包括表的创建、查看、修改、删除等,了解如何操作这些表是数据库管理和开发的基本技能,本文给大家介绍Mysql表的简单操作,感兴趣的朋友一起看... 目录3.1 创建表 3.2 查看表结构3.3 修改表3.4 实践案例:修改表在数据库中,表的操作主要

C# WinForms存储过程操作数据库的实例讲解

《C#WinForms存储过程操作数据库的实例讲解》:本文主要介绍C#WinForms存储过程操作数据库的实例,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、存储过程基础二、C# 调用流程1. 数据库连接配置2. 执行存储过程(增删改)3. 查询数据三、事务处

Java使用Curator进行ZooKeeper操作的详细教程

《Java使用Curator进行ZooKeeper操作的详细教程》ApacheCurator是一个基于ZooKeeper的Java客户端库,它极大地简化了使用ZooKeeper的开发工作,在分布式系统... 目录1、简述2、核心功能2.1 CuratorFramework2.2 Recipes3、示例实践3

Java利用JSONPath操作JSON数据的技术指南

《Java利用JSONPath操作JSON数据的技术指南》JSONPath是一种强大的工具,用于查询和操作JSON数据,类似于SQL的语法,它为处理复杂的JSON数据结构提供了简单且高效... 目录1、简述2、什么是 jsONPath?3、Java 示例3.1 基本查询3.2 过滤查询3.3 递归搜索3.4

Python使用DrissionPage中ChromiumPage进行自动化网页操作

《Python使用DrissionPage中ChromiumPage进行自动化网页操作》DrissionPage作为一款轻量级且功能强大的浏览器自动化库,为开发者提供了丰富的功能支持,本文将使用Dri... 目录前言一、ChromiumPage基础操作1.初始化Drission 和 ChromiumPage

利用Go语言开发文件操作工具轻松处理所有文件

《利用Go语言开发文件操作工具轻松处理所有文件》在后端开发中,文件操作是一个非常常见但又容易出错的场景,本文小编要向大家介绍一个强大的Go语言文件操作工具库,它能帮你轻松处理各种文件操作场景... 目录为什么需要这个工具?核心功能详解1. 文件/目录存javascript在性检查2. 批量创建目录3. 文件

Redis中管道操作pipeline的实现

《Redis中管道操作pipeline的实现》RedisPipeline是一种优化客户端与服务器通信的技术,通过批量发送和接收命令减少网络往返次数,提高命令执行效率,本文就来介绍一下Redis中管道操... 目录什么是pipeline场景一:我要向Redis新增大批量的数据分批处理事务( MULTI/EXE

使用Python高效获取网络数据的操作指南

《使用Python高效获取网络数据的操作指南》网络爬虫是一种自动化程序,用于访问和提取网站上的数据,Python是进行网络爬虫开发的理想语言,拥有丰富的库和工具,使得编写和维护爬虫变得简单高效,本文将... 目录网络爬虫的基本概念常用库介绍安装库Requests和BeautifulSoup爬虫开发发送请求解