web-dev-qa-db-ja.com

作成元の物理ファイルがなくてもストリームを作成できます

サーバー上に存在するドキュメントを含むZipファイルを作成する必要があります。 .Net Packageクラスを使用してこれを行い、新しいパッケージ(Zipファイル)を作成するには、物理​​ファイルまたはストリームへのパスが必要です。 Zipファイルとなる実際のファイルを作成するのではなく、メモリなどに存在するストリームを作成しようとしています。

私の質問は、インスタンス化する物理ファイルがなくても、新しいストリーム(FileStream、MemoryStreamなど)をどのようにインスタンス化するかです。

20
jhorton

MemoryStream にはいくつかの コンストラクターのオーバーロード があり、いずれもファイルを必要としません。

32
Robert Harvey

MemoryStreamのMSDNページ でこれを行う方法の例があります:

using System;
using System.IO;
using System.Text;

class MemStream
{
    static void Main()
    {
        int count;
        byte[] byteArray;
        char[] charArray;
        UnicodeEncoding uniEncoding = new UnicodeEncoding();

        // Create the data to write to the stream.
        byte[] firstString = uniEncoding.GetBytes(
            "Invalid file path characters are: ");
        byte[] secondString = uniEncoding.GetBytes(
            Path.GetInvalidPathChars());

        using(MemoryStream memStream = new MemoryStream(100))
        {
            // Write the first string to the stream.
            memStream.Write(firstString, 0 , firstString.Length);

            // Write the second string to the stream, byte by byte.
            count = 0;
            while(count < secondString.Length)
            {
                memStream.WriteByte(secondString[count++]);
            }

            // Write the stream properties to the console.
            Console.WriteLine(
                "Capacity = {0}, Length = {1}, Position = {2}\n",
                memStream.Capacity.ToString(),
                memStream.Length.ToString(),
                memStream.Position.ToString());

            // Set the position to the beginning of the stream.
            memStream.Seek(0, SeekOrigin.Begin);

            // Read the first 20 bytes from the stream.
            byteArray = new byte[memStream.Length];
            count = memStream.Read(byteArray, 0, 20);

            // Read the remaining bytes, byte by byte.
            while(count < memStream.Length)
            {
                byteArray[count++] =
                    Convert.ToByte(memStream.ReadByte());
            }

            // Decode the byte array into a char array
            // and write it to the console.
            charArray = new char[uniEncoding.GetCharCount(
                byteArray, 0, count)];
            uniEncoding.GetDecoder().GetChars(
                byteArray, 0, count, charArray, 0);
            Console.WriteLine(charArray);
        }
    }
}

これはあなたが探しているものですか?

8
Justin Ethier

新しいストリームを作成して書き込むことができます。オブジェクトを作成するのにファイルは必要ありません。

http://msdn.Microsoft.com/en-us/library/system.io.memorystream.aspx

書き込み方法:

http://msdn.Microsoft.com/en-us/library/system.io.memorystream.write.aspx

メモリストリームのコンストラクタ:

http://msdn.Microsoft.com/en-us/library/system.io.memorystream.memorystream.aspx

3
kemiller2002