我在安裝了16GB RAM的64位Windows 7計(jì)算機(jī)上的開(kāi)發(fā)IIS服務(wù)器(來(lái)自VS2010 IDE)上運(yùn)行以下方法:public static MemoryStream copyStreamIntoMemoryStream(Stream stream){ long uiLen = stream.Length; byte[] buff = new byte[0x8000]; int nSz; MemoryStream ms = new MemoryStream(); try { while ((nSz = stream.Read(buff, 0, buff.Length)) != 0) { ms.Write(buff, 0, nSz); } } finally { Debug.WriteLine("Alloc size=" + ms.Length); } return ms;}我得到了System.OutOfMemoryException這一行:ms.Write(buff, 0, nSz);分配268435456字節(jié)時(shí)拋出該錯(cuò)誤:分配大小= 268435456這是0x10000000或256 MB。所以我想知道是否需要設(shè)置一些全局設(shè)置才能使其正常工作?
3 回答

慕姐8265434
TA貢獻(xiàn)1813條經(jīng)驗(yàn) 獲得超2個(gè)贊
我知道這很舊,但是我想知道Stream.CopyTo()方法是否不能解決小于int.MaxValue的流長(zhǎng)度的內(nèi)存分配問(wèn)題?在這種情況下,以下代碼可能不太容易出現(xiàn)OutOfMemory異常: if (int.MaxValue >= memoryStream.Length) { MemoryStream memoryStream = new MemoryStream(); stream.CopyTo(memoryStream); memoryStream.Capacity = (int) memoryStream.Length; // Optional but helps eliminate null padding. }
- 3 回答
- 0 關(guān)注
- 1467 瀏覽
添加回答
舉報(bào)
0/150
提交
取消