■ MemoryStream 클래스의 Write 메소드를 사용해 스트림에서 바이트 배열을 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
#region 바이트 배열 구하기 - GetByteArray(sourceStream) /// <summary> /// 바이트 배열 구하기 /// </summary> /// <param name="sourceStream">소스 스트림</param> /// <returns>바이트 배열</returns> public byte[] GetByteArray(Stream sourceStream) { byte[] bufferByteArray = new byte[16384]; // 16×1024 using(MemoryStream targetStream = new MemoryStream()) { int countRead; while((countRead = sourceStream.Read(bufferByteArray, 0, bufferByteArray.Length)) > 0) { targetStream.Write(bufferByteArray, 0, countRead); } return targetStream.ToArray(); } } #endregion |