次の方法で共有


方法 : ディスクに書き込まずにドキュメントにデータを挿入する

ハード ディスクにデータを書き込むのではなく、メモリ内の Office ソリューションのドキュメントにデータを挿入できます。 HTTP プロトコルを使用してドキュメントをバイト配列として送信する必要がある場合、データを変更するために一時ファイルを作成する代わりに、この機能を使用してバイト配列のデータを直接変更できます。

対象: このトピックの情報は、Word 2007 と Word 2010 のドキュメント レベルのプロジェクトに適用されます。詳細については、「Office アプリケーションおよびプロジェクト タイプ別の使用可能な機能」を参照してください。

ドキュメントにデータを挿入するには

  1. ドキュメントをバイト配列としてメモリに読み込みます。

    Dim name As String = "C:\Documents\WordApplication3.doc"
    Dim fileStream As System.IO.FileStream = Nothing
    Dim bytes() As Byte = Nothing
    
    Try
        fileStream = New System.IO.FileStream( _
            name, System.IO.FileMode.Open, System.IO.FileAccess.Read)
        ReDim bytes(fileStream.Length)
        fileStream.Read(bytes, 0, fileStream.Length)
    
    Finally
        If Not fileStream Is Nothing Then
            fileStream.Close()
        End If
    End Try
    
    string name = @"C:\Documents\WordApplication3.doc";
    System.IO.FileStream fileStream = null;
    byte[] bytes = null;
    
    try
    {
        fileStream = new System.IO.FileStream(
            name, System.IO.FileMode.Open, System.IO.FileAccess.Read);
        bytes = new byte[(int)fileStream.Length];
        fileStream.Read(bytes, 0, (int)fileStream.Length);
    }
    finally
    {
        if (fileStream != null)
        {
            fileStream.Close();
        }
    }
    
  2. ファイル名の代わりに、サーバー側のオブジェクト モデルにバイト配列を渡し、データ操作を実行します。

    Dim sd1 As ServerDocument = Nothing
    Try
        sd1 = New ServerDocument(bytes, name)
    
        ' Your data manipulation code goes here. 
    
        sd1.Save()
    
    ServerDocument sd1 = null;
    try
    {
        sd1 = new ServerDocument(bytes, name);
    
        // Your data manipulation code goes here. 
    
        sd1.Save();
    
  3. ドキュメントをエンド ユーザーに送信し、ServerDocument を閉じます。

        ' If you have a Word document, use the MIME string:
        Response.ContentType = "application/msword"
    
        ' If you have an Excel workbook, use the MIME string:
        'Response.ContentType = "application/vnd.ms-excel"
    
        Response.AddHeader("Content-disposition", "filename=" + name)
        Response.BinaryWrite(sd1.Document)
    
    Finally
        If Not sd1 Is Nothing Then
            sd1.Close()
        End If
    End Try
    
        // If you have a Word document, use the MIME string:
        Response.ContentType = "application/msword";
    
        // If you have an Excel workbook, use the MIME string:
        //Response.ContentType = "application/vnd.ms-excel";
    
        Response.AddHeader("Content-disposition", "filename=" + name);
        Response.BinaryWrite(sd1.Document);
    }
    finally
    {
        if (sd1 != null)
        {
            sd1.Close();
        }
    }
    

コードのコンパイル

この例で必要な要素は次のとおりです。

  • プログラム例を含む ASP.NET プロジェクト。 プロジェクトには次の構成が必要です。

    • プロジェクトに、Microsoft.VisualStudio.Tools.Applications.ServerDocument.dll アセンブリへの参照 (プロジェクトが .NET Framework 4 を対象としている場合) または Microsoft.VisualStudio.Tools.Applications.ServerDocument.v10.0.dll アセンブリへの参照 (プロジェクトが .NET Framework 3.5 を対象としている場合) が必要です。

    • コード例をコピーするコード ファイルには、Microsoft.VisualStudio.Tools.Applications 名前空間に対する Imports (Visual Basic の場合) ステートメントまたは using (C# の場合) ステートメントが必要です。

  • データ キャッシュを含む、WordApplication3.doc という名前の Microsoft Office Word 文書 (C:\Documents フォルダーにあります)。

参照

処理手順

方法 : サーバー上のブックにデータを挿入する

方法 : サーバー上のブックからキャッシュされたデータを取得する

方法 : サーバー上のブックでキャッシュされたデータを変更する

概念

サーバー上のドキュメント内のデータへのアクセス