JS中调用本地Winform程序并传递参数
原创
©著作权归作者所有:来自51CTO博客作者霸道流氓的原创作品,请联系作者获取转载授权,否则将追究法律责任
场景
JS中调用本地exe程序:
JS中调用本地exe程序_BADAO_LIUMANG_QIZHI的博客
在上面的基础上怎样在js中调用本地winform程序并且传递参数。
注:
关注公众号
霸道的程序猿
获取编程相关电子书、教程推送与免费下载。
实现
1、新建或者修改上面的myprotocol.reg注册表文件,在shell\open\command下的
exe路径中添加参数占位符%1
[HKEY_CLASSES_ROOT\myprotocol\shell\open\command]
@="\"D:\\test\\UrlProcotolDemo.exe\"%1"
完整.reg文件
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\myprotocol]
@="myprotocol Protocol"
"URL Protocol"=""
[HKEY_CLASSES_ROOT\myprotocol\DefaultIcon]
@="D:\\test\\UrlProcotolDemo.exe"
[HKEY_CLASSES_ROOT\myprotocol\shell]
@=""
[HKEY_CLASSES_ROOT\myprotocol\shell\open]
@=""
[HKEY_CLASSES_ROOT\myprotocol\shell\open\command]
@="\"D:\\test\\UrlProcotolDemo.exe\"%1"
然后双击运行该reg文件,重新注册注册表。
2、新建winform程序,页面添加一个label
主窗体中添加Public变量,用来接收传递的参数,并在窗体load方法中将变量赋值给label
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace UrlProcotolDemo
{
public partial class Form1 : Form
{
public String canshu = String.Empty;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
label1.Text = canshu;
}
}
}
修改Program.cs,Main方法中添加参数,并判断参数不为空时解析参数
static void Main(string[] args)
{
String canshu = "参数为空";
if (args.Length>0) {
canshu = Regex.Match(args[0],@"(?<=://).+?(?=:|/|\Z)").Value; ;
}
Console.WriteLine("canshu----"+canshu);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Form1 form1 = new Form1();
form1.Text = canshu;
form1.canshu = canshu;
Application.Run(form1);
}
3、编译生成winfrom的exe项目,将其放在上面注册表文件对应的路径下
4、新建或者修改html文件
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
</head>
<body>
<div>
<a href="myprotocol://badao">
执行可执行文件
</a>
</div>
</body>
</html>
在调用时传递参数badao