Tagged Questions
A memory stream is a kind of stream that has several methods to access and store data in memory.
68
votes
6answers
46k views
How do you get a string from a MemoryStream?
If I am given a MemoryStream that I know has been populated with a String, how do I get a String back out?
14
votes
11answers
9k views
Is a memory leak created if a MemoryStream in .NET is not closed?
I have the following code:
MemoryStream foo(){
MemoryStream ms = new MemoryStream();
// write stuff to ms
return ms;
}
void bar(){
MemoryStream ms2 = foo();
// do stuff with ms2
...
13
votes
4answers
12k views
Converting TMemoryStream to String in Delphi 2009
We had the following code previous to Delphi 2009:
function MemoryStreamToString(M: TMemoryStream): String;
var
NewCapacity: Longint;
begin
if (M.Size = 0) or (M.Memory = nil) then
Result:= ...
11
votes
2answers
7k views
Do I need to do StreamWriter.flush()?
suppose this code (C#):
using (MemoryStream stream = new MemoryStream())
{
StreamWriter normalWriter = new StreamWriter(stream);
BinaryWriter binaryWriter = new BinaryWriter(stream);
...
10
votes
3answers
4k views
Simpler way to create a C++ memorystream from (char*, size_t), without copying the data?
I couldn't find anything ready-made, so I came up with:
class membuf : public basic_streambuf<char>
{
public:
membuf(char* p, size_t n) {
setg(p, p, p + n)
}
}
Usage:
char *mybuffer;
...
9
votes
2answers
20k views
c# creating file using memorystream instead of textwriter
I have an application that is currently creating a text file to import into an accounting application. It is using the following code to create the file and write lines to it:
TextWriter tw = ...
9
votes
5answers
9k views
MemoryStream.Read doesn't copy bytes to buffer - c#
I don't really get it and it's driving me nuts.
i've these 4 lines:
Image img = Image.FromFile("F:\\Pulpit\\soa.bmp");
MemoryStream imageStream = new MemoryStream();
img.Save(imageStream, ...
8
votes
1answer
176 views
FileStream not closing file
I have the following code:
using (MemoryStream str = new MemoryStream())
{
Program.api.GetDocument(result, str);
using (FileStream fileStream = File.Create(filePath))
...
8
votes
7answers
874 views
How do I “fork” a Stream in .NET?
As discussed before, when a BinaryReader or BinaryWriter gets closed, its underlying Stream get closed as well (aargh). Consider this situation: a routine R is passed a MemoryStream, say M; I would ...
7
votes
8answers
25k views
How to bind a MemoryStream to asp:image control?
Is there a way to bind a MemoryStream to asp:image control?
6
votes
1answer
791 views
Excel and “unreadable content” when creating an Open XML spreadsheet with MemoryStream
When creating an Excel spreadsheet using the Open XML SDK v2.0, our Excel output initially worked successfully for a number of months. Recently Excel (all versions) began to complain about "Excel ...
5
votes
5answers
2k views
Writing a Text File in memory and saving it with savefiledialog
I am trying to make a text file in memory, add some lines to it and at the end save the file in a text file. I can handle the savedialog part but I dont know how to get the text file from memory. Any ...
5
votes
5answers
632 views
.NET MemoryStream - Should I set the capacity?
This is probably a really simple question, I think all that I am after is Best Practice for declaring a new MemoryStream
What is the difference between the following 2 samples:
MemoryStream myStream ...
5
votes
3answers
661 views
What is the difference between calling Stream.Write and using a StreamWriter?
What is the difference between instantiating a Stream object, such as MemoryStream and calling the memoryStream.Write() method to write to the stream, and instantiating a StreamWriter object with the ...
5
votes
2answers
8k views
Creating WPF BitmapImage from MemoryStream png, gif
I am having some trouble creating a BitmapImage from a MemoryStream from png and gif bytes obtained from a web request. The bytes seem to be downloaded fine and the BitmapImage object is created ...
5
votes
1answer
1k views
Can an App.Config be loaded from a string or memory stream?
I know that I can load an app.config file from a different location using the following line of code:
AppDomain.CurrentDomain.SetData("APP_CONFIG_FILE", ConfigFile);
where ConfigFile is a full path ...
4
votes
2answers
568 views
Reading Stream to a MemoryStream in multiple threads
I am stuck up in a place. I am reading a flv file from a URL. I am reading this to a Stream and then writing this Stream to a MemoryStream in a loop. When the code comes out of the loop, I am writing ...
4
votes
2answers
535 views
Read from a huge MemoryStream in C#
I use a BinaryReader (MemoryStream(MyByteArray)) to read variable sized records and process them all in memory. This works well as long as my bytestream, which is in the array, is less than about 1.7 ...
3
votes
1answer
65 views
Multiple files in one MemoryStream, possible?
Is it possible to save a list of files into one MemoryStream and save the files later back to the disc?
3
votes
2answers
99 views
How to check if a C# Stream is resizable?
From http://msdn.microsoft.com/en-us/library/system.io.memorystream%28v=VS.90%29.aspx:
Memory streams created with an unsigned byte array provide a
non-resizable stream of the data. When using a ...
3
votes
1answer
513 views
MVC3 return File action causes intermittent Excel program error
I have a problem that closely relates to this problem Microsoft Excel Error: "There was a problem sending the command to the program." whereby opening Excel gives There was an error sending ...
3
votes
1answer
124 views
How to find out whether a memory stream is filled properly
The code below tries to fill the message byte array with some simple text until the buffer is filled.
byte[] message = new byte[1024];
using (MemoryStream memoryStream = new MemoryStream(message, ...
3
votes
3answers
1k views
Trouble with MemoryStream and StreamWriter
I am not sure what I am doing wrong, have seen a lot of examples, but can't seem to get this working.
public static Stream Foo()
{
var memStream = new MemoryStream();
var streamWriter = new ...
3
votes
4answers
4k views
C# change dpi of an uploaded image
I've got to following function which is called to change the resolution of an image. I want to do this so uploaded image with for example 300dpi will be modified to 72dpi (for web). This question is ...
3
votes
1answer
745 views
C# BinaryReader.Read() gets junk to start with
I am trying to figure out what I am doing wrong here. I am attempting to use a Binary Reader to ease getting an initial four bytes from a stream into an Int32 value that tells me how long the rest of ...
3
votes
1answer
199 views
Inconsistent behavior when saving a PNG to Response.OutputStream
This question is related this one: http://stackoverflow.com/questions/582766/cannot-render-image-to-httpcontext-response-outputstream. It is not a duplicate.
When attempting to save a PNG to the ...
3
votes
6answers
1k views
Can as 2D byte array be made one huge continuous byte array?
I have an extremely large 2D bytearray in memory,
byte MyBA = new byte[int.MaxValue][10];
Is there any way (probably unsafe) that I can fool C# into thinking this is one huge continuous byte array? ...
3
votes
4answers
916 views
Opening an audio (wav) file from a MemoryStream to determine the duration
Is there a way, either within the Framework or by using P/Invoke to determine the duration of a wav file that's held in a MemoryStream?
I've already had a look at Managed DirectX and another similar ...
3
votes
4answers
975 views
C# StreamWriter and StreamReader memory managment problem, why won't memory used deallocate?
So I'm using a StreamReader that uses a MemoryStream to write to a StreamWriter and inside of this application but the memory usage increases by 300mb (From one of the larger inputs) and does not ...
3
votes
2answers
1k views
Performance: use a BinaryReader on a MemoryStream to read a byte array, or read directly?
I would like to know whether using a BinaryReader on a MemoryStream created from a byte array (byte[]) would reduce performance significantly.
There is binary data I want to read, and I get that data ...
3
votes
2answers
1k views
Reset or Clear .NET MemoryStream
The .NET MemoryStream does not appear to have a .Reset or .Clear method.
I was thinking of using the following code to accomplish this:
ms.Seek(0, IO.SeekOrigin.Begin)
ms.SetLength(0)
What is the ...
3
votes
1answer
300 views
How can I modify an MSI in memory?
I'd like to read an MSI file into a MemoryStream (or something similar), and modify it. What's the easiest way to do this, without corrupting the MSI?
All I need to be able to do is modify the value ...
3
votes
2answers
64 views
Is it possible or even logical to download an executable from SQL server via .NET?
I am in the beginning stages of developing a solution to decrypt the hard drives of a few thousand laptops.
I have a thought that it would be useful to create a parent application that would handle ...
3
votes
3answers
4k views
iTextSharp + FileStream = Corrupt PDF file
I am trying to create a pdf file with iTextSharp. My attempt writes the content of the pdf to a MemoryStream so I can write the result both into file and a database BLOB. The file gets created, has a ...
3
votes
2answers
1k views
Sending large serialized objects over sockets is failing only when trying to grow the byte Array, but ok when using a massive byte array
I have code where I am trying to grow the byte array while receiving the data over my socket. This is erroring out.
public bool ReceiveObject2(ref Object objRec, ref string sErrMsg)
{
...
3
votes
4answers
2k views
How to run unmanaged executable from memory rather than disc
I want to embed a command-line utility in my C# application, so that I can grab its bytes as an array and run the executable without ever saving it to disk as a separate file (avoids storing ...
3
votes
5answers
7k views
Image.FromStream() method returns Invalid Argument exception
I am capturing images from a smart camera imager and receiving the byte array from the camera through socket programming (.NET application is the client, camera is the server).
The problem is that i ...
3
votes
4answers
989 views
Does my code properly clean up its List<MemoryStream>?
I've got a third-party component that does PDF file manipulation. Whenever I need to perform operations I retrieve the PDF documents from a document store (database, SharePoint, filesystem, etc.). ...
3
votes
6answers
12k views
Using MemoryStream to write out to XML
I have noticed two different approaches to writing out data to an XML file (error handling omitted for brevity).
The first method has you build the XML document and then simply save the XML to a ...
2
votes
3answers
67 views
Does a MemoryStream get disposed of automatically when returning it as an ActionResult?
public ActionResult CustomChart(int reportID)
{
Chart chart = new Chart();
// Save the chart to a MemoryStream
var imgStream = new MemoryStream();
chart.SaveImage(imgStream);
...
2
votes
1answer
242 views
MemoryStream, Cannot access a closed stream
With the sharpPDF library I generate a pdf memory stream, and I want to send it directly via email. But the line ms.Seek(.... gives an ObjectDisposedException;
Cannot access a closed Stream.
...
2
votes
2answers
194 views
C# Trying to replace a byte while using MemoryStream class
I get a text file from a mainframe and sometimes there are some 0x0D injected into the middle of the text lines.
The previos programmer created a method using the FileStream class. This method works ...
2
votes
5answers
61 views
Write to a stream as if it were a file, but really write to an object
I am trying write a stream to the ram instead of a file. I tried doing this:
Stream stream = new MemoryStream();
BinaryFormatter bFormatter = new BinaryFormatter();
bFormatter.Serialize(stream, ...
2
votes
1answer
137 views
how to convert Image to string the most efficient way?
I want to convert an image file to a string. The following works:
MemoryStream ms = new MemoryStream();
Image1.Save(ms, ImageFormat.Jpeg);
byte[] picture = ms.ToArray();
string formmattedPic = ...
2
votes
4answers
183 views
MemoryStream.SetLength(0) and MemoryStream.Capacity = 0 don't clear used memory
I have a program that streams media, which creates two huge MemoryStreams, and then needs to zero them when done. The problem is, the memory does not seem to be reclaimed after I call BOTH ...
2
votes
2answers
122 views
How to pass through the soap memory stream?
I create memory stream.
var memoryStream = new MemoryStream();
var binaryFormatter = new BinaryFormatter();
binaryFormatter.Serialize(memoryStream, list.ToArray());
And I need to pass through the ...
2
votes
1answer
314 views
How do I load a Unicode string into a TTreeView via a TMemoryStream?
I need to do something with a Unicode string of a tree of a TTreeView, so I want to load this string into a memory stream and then load the memory stream into the tree view. How can I do this?
2
votes
2answers
57 views
How do MemoryStream handle an assigned buffer?
Let's say that I'm assigning a buffer in the MemoryStream constructor (buffer, offset, count).
How do the MemoryStream handle it? Will it copy the buffer, or use it? Will it use another buffer ...
2
votes
1answer
1k views
Serializing a memorystream object to string
Write now I'm using XmlTextWriter to convert a MemoryStream object into string. But I wan't to know whether there is a faster method to serialize a memorystream to string.
I follow the code given ...
2
votes
3answers
502 views
MemoryStream from bytes array with different types of data
I want to create a memory stream which contains int32, int16, single values. Using binarywriter is useless so i tried to make bytes array. Because values are in different types, I don't know how to do ...