码迷,mamicode.com
首页 > 其他好文 > 详细

浏览器-启动本地程序

时间:2019-01-03 00:41:10      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:man   打开   注册   双击   \n   world   %s   comm   ++   

(未完成)

使用自定义的协议打开应用程序

  1. 编写程序
    将test.exe保存到c盘根目录
#include <stdio.h>
int main(int argc, char** argv)
{
    int i;
    printf("hello world!\n");
    for (i = 0; i < argc; ++i)
    {
        printf("argv[%d] = %s\n", i, argv[i]);
    }
    getchar();
    return 0;
}
  1. 注册表里添加协议
    test.reg保存到c盘根目录,并双击运行
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\test-url-protocol]
"URL Protocol"="c:\\test.exe"
@="fooProtocol"
[HKEY_CLASSES_ROOT\test-url-protocol\shell]
[HKEY_CLASSES_ROOT\test-url-protocol\shell\open]
[HKEY_CLASSES_ROOT\test-url-protocol\shell\open\command]
@="\"c:\\test.exe\" \"%1\""
  1. 浏览器中测试
    浏览器地址栏输入test-url-protocol://xxx(xxx是参数)

浏览器-启动本地程序

标签:man   打开   注册   双击   \n   world   %s   comm   ++   

原文地址:https://www.cnblogs.com/jffun-blog/p/10212025.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!