好吧,例如我有一些简单的控制台应用程序。我的目的是生成一些报告并在一些外部应用程序(如记事本或网络浏览器)中向用户表示。
class Program
{
[DllImport("user32.dll", EntryPoint = "FindWindowEx")]
public static extern IntPtr FindWindowEx(IntPtr hwndParent, IntPtr hwndChildAfter, string lpszClass, string lpszWindow);
[DllImport("User32.dll")]
public static extern int SendMessage(IntPtr hWnd, int uMsg, int wParam, string lParam);
static void Main()
{
OpenNotepadAndInputTextInIt("Message in notepad");
OpenHtmlFileInBrowser(@"c:\temp\test.html");
}
private static string GetDefaultBrowserPath()
{
string key = @"HTTP\shell\open\command";
using(RegistryKey registrykey = Registry.ClassesRoot.OpenSubKey(key, false))
{
return ((string)registrykey.GetValue(null, null)).Split('"')[1];
}
}
private static void OpenHtmlFileInBrowser(string localHtmlFilePathOnMyPc)
{
Process browser = Process.Start(new ProcessStartInfo(GetDefaultBrowserPath(), string.Format("file:///{0}", localHtmlFilePathOnMyPc)));
browser.WaitForInputIdle();
}
private static void OpenNotepadAndInputTextInIt(string textToInputInNotepad)
{
Process notepad = Process.Start(new ProcessStartInfo("notepad.exe"));
notepad.WaitForInputIdle();
if(notepad != null)
{
IntPtr child = FindWindowEx(notepad.MainWindowHandle, new IntPtr(0), "Edit", null);
SendMessage(child, 0x000C, 0, textToInputInNotepad);
}
}
}
该解决方案效果很好,但是正如您所见,我有两种方法;GetDefaultBrowserPath()
和GetDefaultBrowserPath(string localHtmlFilePathInMyPc)
。第一个将消息字符串直接传递到记事本窗口,但第二个需要创建一个文件、一些html
页面,然后将此 html 文件作为 Web 浏览器的参数传递。这是一种缓慢的解决方案。我想生成一个html
字符串报告并将其直接传递给 Web 浏览器,而无需创建中间 html 文件。