url protocol
Posted ives
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了url protocol相关的知识,希望对你有一定的参考价值。
首先注册服务
方法1,保存为reg文件直接执行,需要按需修改路径
Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\EasyPrint] "URL Protocol"="C:\\Program Files\\EasyPrint\\EasyPrint.exe" @="EasyPrintProtocol" [HKEY_CLASSES_ROOT\EasyPrint\DefaultIcon] @="C:\\Program Files\\EasyPrint\\EasyPrint.exe,1" [HKEY_CLASSES_ROOT\EasyPrint\shell] [HKEY_CLASSES_ROOT\EasyPrint\shell\open] [HKEY_CLASSES_ROOT\EasyPrint\shell\open\command] @="\"C:\\Program Files\\EasyPrint\\EasyPrint.exe\" \"%1\""
方法2,在程序中自动注册服务,此操作可以放到安装程序中,根据实际情况获取path即可
var path = "E:\\code\\EasyPrint\\EasyPrint\\bin\\Debug"; List<string> cmds = new List<string>{ "/c" + $"reg add \"HKCR\\EasyPrint\" /f /ve /d \"EasyPrintProtocol\"", "/c" + $"reg add \"HKCR\\EasyPrint\" /f /v \"URL Protocol\" /d \"", "/c" + $"reg add \"HKCR\\EasyPrint\\DefaultIcon\" /f /ve /d \""+path+"\\EasyPrint.exe,1\"", "/c" + $"reg add \"HKCR\\EasyPrint\\shell\\open\\command\" /f /ve /d \"\\\""+path+"\\EasyPrint.exe\\\" \\\"%1\\\"\"" }; foreach (var command in cmds) { Process p = new Process { StartInfo = { FileName = "cmd.exe", Arguments = command, UseShellExecute = false, RedirectStandardInput = true, RedirectStandardOutput = true, CreateNoWindow = true } }; p.Start(); p.StandardInput.WriteLine("exit"); p.Close(); }
将会在系统中注册一个协议,此协议名称根据注册表的key决定,此处为EasyPrint,大小写无关
调用时即使用 EasyPrint://par1&par2
具体参数传递方式根据需要自行处理即可,系统会将完整请求自动转发给注册的程序
以上是关于url protocol的主要内容,如果未能解决你的问题,请参考以下文章
结合两个代码片段?将用户输入的 Youtube url 转换为嵌入 url,然后将 iframe src 替换为转换后的 url