gpt4 book ai didi

c# - 获取 Firefox 网址?

转载 作者:太空狗 更新时间:2023-10-29 20:56:02 24 4
gpt4 key购买 nike

如何使用 .NET 2.0 windows/console 应用程序从正在运行的 firefox 实例获取 url? C# 或 VB 代码都可以。

谢谢!

最佳答案

以 Rob Kennedy 的回答为基础并使用 NDde

using NDde.Client;

class Test
{
public static string GetFirefoxURL()
{
DdeClient dde = new DdeClient("Firefox", "WWW_GetWindowInfo");
dde.Connect();
string url = dde.Request("URL", int.MaxValue);
dde.Disconnect();
return url;
}
}

注意:这非常慢。在我的电脑上需要几秒钟。结果看起来像这样:

"http://stackoverflow.com/questions/430614/get-firefox-url","Get Firefox URL? - Stack Overflow",""

有关浏览器 DDE 的更多信息 here .

关于c# - 获取 Firefox 网址?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/430614/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com