从浏览器启动应用程序 - Application URL

关键字:Browser,Application,URL Protocol,Windows,Mac,IE,Chrome,Safari。

OS: Windows 7, OS X Yosemite。

Windows:

1.写一个C++ 应用程序,代码如下:

#include <iostream>
#include <string>
using namespace std;

int main(int argc, char* argv[])
{
    if(argc > 1)
    {
        std::string argi(argv[1]);
        cout<<argi<<endl;
    }

    cout<<"Press any key to continue"<<endl;
    int i;
    cin>>i;
    return 0;
}

2.在windows上新建文件MyApp.reg,文件内容如下:

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\MyApp]
@="Open MyApp"
"URL Protocol"=""

[HKEY_CLASSES_ROOT\MyApp\shell]

[HKEY_CLASSES_ROOT\MyApp\shell\open]

[HKEY_CLASSES_ROOT\MyApp\shell\open\command]
@="\"L:\\Dev\\MyApp\\Debug\\MyApp.exe\" \"%1\""

注:把"L:\\Dev\\MyApp\\Debug\\MyApp.exe\"更新为MyApp.exe所在的路径。

在Windows上运行MyApp.reg添加内容到注册表,如下图:

4.写一段HTML测试代码如下,保存到文件MyAppTest.html:

<!DOCTYPE html>
<html>
<body>
file URL or path: <input id=‘fileinput‘ type=‘text‘/><br>
<button type=‘button‘ onclick=‘window.location.href = "MyApp://command=open&file=" + encodeURIComponent(document.getElementById("fileinput").value)‘>Open in MyApp</button>
<button type=‘button‘ onclick=‘window.location.href = "MyApp://command=insert&file=" + encodeURIComponent(document.getElementById("fileinput").value)‘>Insert in MyApp</button>
</body>
</html>

分别在Windows上用浏览器运行MyAppTest.html,点击“Open in MyApp”,结果如下:

OSX:

用Xode打开你的project

1.选择你的 project.

2.选择你的 target.

3.打开 Info tab.

4.在URL Types下面添加新的URL.

如下图:

在Safari里面运行URL:myapp://,将启动这个应用。

时间: 2024-10-07 06:05:25

从浏览器启动应用程序 - Application URL的相关文章

iOS---从浏览器启动应用程序

源代码下载:http://download.csdn.net/detail/haogaoming123/8626957 通过URL协议实现从Safari等浏览器中跳转打开你的app,实现这样的功能并不麻烦,通过将网上一些相关教程汇总以后就写了下面的教程分享. 实现效果如下,在浏览器中输入"appABC://"之后就会打开这个程序,打开后程序中会显示跳转过来的链接地址. 第一步:在info.plist中加入这些内容 其中URL identifier 可以随便取,URL Schemes 就

浏览器-启动本地程序

(未完成) 使用自定义的协议打开应用程序 编写程序 将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; } 注册表

在春天结束JVM当浏览器选项卡关闭启动应用程序

我有一个spring-boot web应用程序分配jar文件. 启动应用程序的代码如下: private static ConfigurableApplicationContext ctx; public static void main(String[] args){ if(ctx == null) { ctx = SpringApplication.run(MyApplication.class, args); } try { openHomePage("http://localhost:8

Atitit.hybrid混合型应用 浏览器插件,控件的实现方式 浏览器运行本地程序的解决方案大的总结---提升用户体验and开发效率..

Atitit.hybrid混合型应用 浏览器插件,控件的实现方式 浏览器运行本地程序的解决方案大的总结---提升用户体验and开发效率.. 1. hybrid App 1 1.1. Hybrid App为什么会兴起编辑 1 1.2. 如何实现网页语言与程序语言的混合编辑 2 1.2.1. 多View混合型 2 1.2.2. 单View混合型 2 1.2.3. Web主体型 2 1.3. Hybrid App的瓶颈与未来编辑 3 2. Web App.Hybrid App.Native APP对比

ASP.NET 应用程序(Application)生命周期概述

原文:ASP.NET 应用程序(Application)生命周期概述 引用MSDN:ASP.NET 应用程序生命周期概述 本 主题概述应用程序生命周期,列出重要的生命周期事件,并描述如何编写适合应用程序生命周期的代码.在 ASP.NET 中,若要对 ASP.NET 应用程序进行初始化并使它处理请求,必须执行一些处理步骤.此外,ASP.NET 只是对浏览器发出的请求进行处理的 Web 服务器结构的一部分.了解应用程序生命周期非常重要,这样才能在适当的生命周期阶段编写代码,达到预期的效果. 应用程序

吉特仓库管理系统(开源)-如何在网页端启动WinForm 程序

原文:吉特仓库管理系统(开源)-如何在网页端启动WinForm 程序 在逛淘宝或者使用QQ相关的产品的时候,比如淘宝我要联系店家点击旺旺图标的时候能够自动启动阿里旺旺进行聊天.之前很奇怪为什么网页端能够自动启动客户端程序,最近在开发吉特仓储管理系统的时候也遇到一个类似的问题,因为使用网页端的打印效果并不是太好,之前也写过关于打印相关的文章可以查阅,我需要使用WinForm客户端来驱动打印,但是我又不想重新开发Winform客户端的所有功能,只要能够使用winform驱动打印即可.我就需要一个类似

web页面启动winform程序

本文实现的需求是: A.通过web页面启动winform程序: B.将页面的参数传递给winform程序: C.winform程序已经启动并正在运行时,从web页面不能重新启动winform程序, 只是当传入winform程序的参数更改时,winform上显示的数据作出相应的更新. 具体实现如下: 1.页面html代码 <!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w

sublime text 3 ctrl+b浏览器启动html

sublime text 2 和3 都可以快速设置浏览器启动,本人在这里介绍如何不下插件启动浏览器.第一步:打开Tool-->build system  ---> new build system 第二步:将内容代替为: { "cmd": ["C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe", "$file"], "selector"

Ubuntu图形界面环境下启动应该程序:

1.先说下Ubuntu14.04系统开机紫框的问题: Grub theme:黑色屏幕出现紫色边框 There's a minor typo on the grub theme which produces a black screen with purple border before the grub menu is drawn and on Plymouth start. AIUI, there's a `!` (negation) missing before the background