淘宝咸鱼关闭了在电脑客户端上的搜索功能,因此咸鱼.EXE有必要存在。它能不安装咸鱼app,就能在电脑上使用咸鱼搜索功能。
用法:复制代码 源码(请自行编译)- #include <stdio.h>
- #include <windows.h>
-
- // 定义标准行长
- #define LINE_BUFF_SIZE 4096
-
- // 定义帮助说明
- #define HELP_INFORMATION "\
- 咸鱼 V1.0 - PC端咸鱼搜索工具\n\
- 使用:\n\
- 咸鱼 [关键词]\n"
-
- // 获取咸鱼PC端关键词搜索地址
- int GetSaltedfishURL(char* keyWords)
- {
- // 过滤保护
- if(strlen(keyWords) > LINE_BUFF_SIZE / 4)
- {
- fputs("Your key words is too long\n", stdout);
- }
-
- // 开辟内存
- char* keyEncode = (char*)malloc(LINE_BUFF_SIZE * sizeof(char));
- char* commandLine = (char*)malloc(LINE_BUFF_SIZE * sizeof(char));
-
- // 编码关键词
- char* ptr = keyEncode;
- while(*keyWords)
- {
- sprintf(ptr, "%%%02X", (unsigned char)(*keyWords));
- keyWords += 1, ptr += 3;
- }
-
- // 组合地址
- sprintf(commandLine, "%s%s", "start https://s.2.taobao.com/list/list.htm?q=", keyEncode);
- printf("%s\n", commandLine);
-
- // 打开网址链接
- system(commandLine);
-
- // 释放内存
- free(keyEncode);
- free(commandLine);
- return 0;
- }
-
- // MAIN主函数
- int main(int argc, char** argv)
- {
- // 参数不足,则抛出使用说明
- if(argc != 2)
- {
- fputs(HELP_INFORMATION, stdout);
- return 1;
- }
-
- // 执行核心函数
- GetSaltedfishURL(argv[1]);
- return 0;
- }
复制代码
|