網頁調起電腦程序是經常用到的場景,比如百度網盤下載,加入 QQ 群之類的
注冊表操作#
在 Windows 上實現就是通過注冊表,將 Scheme 和對應的程序添加進去。其他系統暫時沒需要就還沒研究,估計也是類似的。
需要配置一下 SchemePrefix
,本文例子中是 demo
在網頁上使用 demo://
開頭的鏈接就可以喚起本機的程序了~
using System.Diagnostics;
using System.Web;
using Microsoft.Win32;
const string AppName = "DemoApp";
const string SchemePrefix = "demo";
void InitReg() {
if (!OperatingSystem.IsWindows()) return;
var path1 = AppName;
var path2 = $@"{path1}\shell\open\command";
var key1 = Registry.ClassesRoot.OpenSubKey(path1, true);
if (key1 == null) {
key1 = Registry.ClassesRoot.CreateSubKey(path1);
}
key1.SetValue("URL Protocol", "");
key1.SetValue(null, $"URL:{SchemePrefix}");
var key2 = Registry.ClassesRoot.OpenSubKey(path2, true);
if (key2 == null) {
key2 = Registry.ClassesRoot.CreateSubKey(path2);
}
var exePath = Environment.ProcessPath ?? "";
key2.SetValue(null, $"\"{exePath}\" \"%1\"");
}
參數解析#
因為是隨手寫的小工具,我也沒有用命令行解析的庫
如果用第三方庫代碼會更優雅
這里就做了兩個命令,一個 install 另一個 open
手動執行 install 會在注冊表里添加配置,之后這個程序文件就不要移動了,后續網頁調起需要執行這個程序。
open 命令是網頁調起時執行的,注意命令參數里的字符需要 URL 轉義。
string action = "", value = "";
string[] cmdArgs = Environment.GetCommandLineArgs();
if (cmdArgs.Length > 1) {
var arg = cmdArgs[1];
Console.WriteLine($"cmd args: {arg}");
if (arg.StartsWith($"{SchemePrefix}://")) {
arg = arg.Replace($"{SchemePrefix}://", "");
}
if (arg.EndsWith("/")) {
arg = arg.Substring(0, arg.Length - 1);
}
var split = arg.Split("http://");
action = split[0];
value = split.Length > 1 ? split[1] : "";
Console.WriteLine($"action: {action}, value: {value}");
}
switch (action) {
case "install":
Console.WriteLine("init reg...");
InitReg();
Console.WriteLine("init reg finished.");
break;
case "open":
var path = HttpUtility.UrlDecode(value);
Console.WriteLine($"open file/dir: {path}");
if (OperatingSystem.IsWindows())
Process.Start($"C:\\Windows\\explorer.exe", path);
if (OperatingSystem.IsLinux())
Process.Start("xdg-open", path);
break;
default:
Console.WriteLine("不知道做啥~");
break;
}
參考資料#
轉自https://www.cnblogs.com/deali/p/18546412
該文章在 2024/11/15 8:49:14 編輯過