0

だから、これは私がする必要があることです

一部のサーバーに接続し、毎秒約 15 ~ 20 エントリの速度でサーバーからデータをフェッチするプログラムがあります。

サーバーとの接続が確立された瞬間に、Excel ウィンドウが開き、サーバーから取得されたすべてのエントリがその Excel テーブルに動的に移動されます。

ただし、すべてのコンテンツは RAM に残ります。つまり、Excel ファイル自体は、その Excel ウィンドウを閉じようとしたときにのみ作成され、[名前を付けて保存] ダイアログが表示されます。

おそらくご存じのとおり、毎回手動でファイルを保存したくないので、開いているウィンドウの Excel テーブルをプログラムでファイルに保存する方法が必要です。

それを行う方法はありますか?

4

1 に答える 1

0

これをサーバー上で実行しておらず、Excel の保存を手動でトリガーしてもかまわない場合は、Interop を使用して Excel インスタンスに接続するものを作成できます。以下は、Excel インスタンスに接続しExcel.Workbook、指定されたワークブック名​​のオブジェクトを返します。

private Excel.Workbook GetWorkbook(string workbookName)
{
    Excel.Window window = null;      // Excel window object from which application is grabbed
    Excel.Application app = null;    // Excel instance from which we get all the open workbooks
    Excel.Workbooks wbs = null;      // List of workbooks
    Excel.Workbook wb = null;        // Workbook to return
    EnumChildCallback cb;            // Callback routine for child window enumeration routine
    List<Process> procs = new List<Process>();           // List of processes

    // Get a full list of all processes that have a name of "excel"

    procs.AddRange(Process.GetProcessesByName("excel"));

    foreach (Process proc in procs)
    {
        // Make sure we have a valid handle for the window

        if ((int)proc.MainWindowHandle > 0)
        {
            // Get the handle of the child window in the current Excel process

            int childWindow = 0;
            cb = new EnumChildCallback(EnumChildProc);
            EnumChildWindows((int)proc.MainWindowHandle, cb, ref childWindow);

            // Make sure we got a valid handle

            if (childWindow > 0)
            {
                // Get the address of the child window so that we can talk to it and
                // get all the workbooks

                const uint OBJID_NATIVEOM = 0xFFFFFFF0;
                Guid IID_IDispatch =
                    new Guid("{00020400-0000-0000-C000-000000000046}");
                int res = AccessibleObjectFromWindow(childWindow, OBJID_NATIVEOM,
                    IID_IDispatch.ToByteArray(), ref window);

                if (res >= 0)
                {
                    app = window.Application;
                    wbs = app.Workbooks;

                    // Loop through all the workbooks within the current Excel window
                    // to see if any match

                    for (int i = 1; i <= wbs.Count; i++)
                    {
                        wb = wbs[i];

                        if (wb.Name == workbookName)
                        {
                            break;
                        }

                        wb = null;
                    }
                }
            }
        }

        // If we've already found our workbook then there's no point in continuing
        // through the remaining processes

        if (wb != null)
        {
            break;
        }
    }

    Release(wbs);
    Release(app);
    Release(window);

    return wb;
}

上記Release()で呼び出されたメソッドは、単に参照を null に設定して呼び出すだけMarshal.FinalReleaseComObject()です。そうしないと、Excel のヘッドレス インスタンスがいたるところに発生します。

ウィンドウを取得する機能の一部を実行するには、次のものが必要です。

private delegate bool EnumChildCallback(int hwnd, ref int lParam);

[DllImport("User32.dll")]
private static extern bool EnumChildWindows(int hWndParent, EnumChildCallback lpEnumFunc, ref int lParam);

[DllImport("Oleacc.dll")]
private static extern int AccessibleObjectFromWindow(int hwnd, uint dwObjectID, byte[] riid, ref Excel.Window ptr);

private bool EnumChildProc(int hwndChild, ref int lParam)
{
    // Get the name of the class that owns the passed-in window handle

    StringBuilder buf = new StringBuilder(128);
    GetClassName(hwndChild, buf, 128);

    // If the class name is EXCEL7 then we've got an valid Excel window

    if (buf.ToString() == "EXCEL7")
    {
        lParam = hwndChild;
        return false;
    }

    return true;
}

[DllImport("User32.dll")]
private static extern int GetClassName(int hWnd, StringBuilder lpClassName, int nMaxCount);

ワークブックを取得したら、呼び出しWorkbook.SaveAs()て保存できます。

于 2013-04-06T03:48:56.470 に答える