URI的簡單運用 通過瀏覽器啟動本地app

2021-08-20 22:57:09 字數 631 閱讀 1354

不講原理,只說過程。

1.準備好你要執行的exe。

2.註冊登錄檔(新建乙個xx.reg檔案,寫入以下內容並雙擊執行:)

ps:注意需要在絕對路徑中使用轉義字元。

windows registry editor version 5.00    

[hkey_classes_root\simu]    

"url protocol"="e:\\uritest.exe"

@="simuprotocol"    

[hkey_classes_root\simu\defaulticon]    

@="\"e:\\uritest.exe\", 1"   

[hkey_classes_root\simu\shell]    

[hkey_classes_root\simu\shell\open]    

[hkey_classes_root\simu\shell\open\command]    

@="\"e:\\uritest.exe\" \"%1\"" 

3.執行

方式1:cmd  執行  start simu:

方式2:html檔案新增openuritest (引數間空格隔開)

Python Selenium啟動瀏覽器

因為我們目前專案常用chrome,此處以chrome為例 1 安裝chrome webdriver 2 編寫第乙個py檔案,用以開啟chrom瀏覽器 先設定好環境變數,在path裡增加chromedriver.exe的路徑 from selenium import webdriver driver ...

windows給瀏覽器註冊uri可以開啟的應用程式

測試 建立a.reg檔案 windows registry editor version 5.00 雙擊reg檔案後會執行裡面的內容,也可以通過windows api寫登錄檔 瀏覽器中定義a標籤 讓使用者雙擊reg檔案肯定不太合適,所以我做到安裝包裡面了,我的安裝包使用nsis做的,所以安裝的時候新...

啟動android預設瀏覽器

一 啟動android預設瀏覽器 intent intent new intent intent.setaction android.intent.action.view uri content url uri.parse intent.setdata content url startactivi...