Tagged Questions

11
votes
9answers
9k views

Play Audio from a Stream using C#

Is there a way in C# to play audio (e.g. MP3) direcly from a Stream (I mean the real .NET class) that for instance was returend from a WebRequest without saving the data temporarily to the disk? …
8
votes
3answers
234 views

Why a BinaryWriter closes the outer Stream on disposal, and how to prevent that? (.NET C#)

I have one method that receives a Stream to write on it using a BinaryWriter. But when I dispose this BinaryWriter it also closes the stream. Can I leave it undisposed so I can leave my stream open?
7
votes
3answers
1k views

How to correctly use .NET2.0 serial port .BaseStream for async operation

I am attempting to use the .BaseStream property of the .NET2.0 SerialPort to do asynchronous reads and writes (BeginWrite/EndWrite, BeginRead/EndRead). I am having some success in this, but after a …
5
votes
4answers
762 views

How to copy one Stream to a byte array with the smallest C# code?

Until now I am counting 12 LoCs. Could you make it smaller? using (Stream fileStream = File.OpenRead(fileName)) { using (BinaryReader binaryReader = new BinaryReader(fileStream)) { …
4
votes
1answer
90 views

Most performant way to write binary data to a file in C#

Hi, I am trying to optimize a class that serializes objects in binary format and writes them in a file. I am currently using a FileStream (in sync mode because of the size of my objects) and a …
4
votes
6answers
210 views

Is the .NET Stream class poorly designed?

I've spent quite a bit of time getting familiar with the .NET Stream classes. Usually I learn a lot by studying the class design of professional, commercial-grade frameworks, but I have to say that …
4
votes
2answers
53 views

regarding streaming, how does a program like skype work?

When programs such as Skype streams video from a user to another and vice versa, how is that usually accomplished? Does client A stream to a server, and server sends it to client B? or does it go …
4
votes
3answers
308 views

This stream does not support seek operations. HttpWebResponse

Hi, I'm making a program which downloads files over http. I've got it downloading, however I want to be able to pause the downloads, close the program and resume them again at a later date. I know …
4
votes
3answers
282 views

Safely overloading stream operator>>

There's a ton of information available on overloading operator<< to mimic a toString()-style method that converts a complex object to a string. I'm interested in also implementing the inverse, …
4
votes
2answers
105 views

How to inspect XML streams from the debugger in Visual Studio 2003

Hi All, I've got to edit an XSLT stylesheet, but I'm flying blind because the XML input only exists fleetingly in a bunch of streams. I can debug into the code, but can't figure out how to get the …
4
votes
3answers
889 views

How to stream mp3 using pure Java

Is it possible to stream mp3s using pure Java? If so, what are the best resources to implement this. If not, are any other music formats streamable using Java only?
4
votes
5answers
3k views

Java : How to determine the correct charset encoding of a stream

With reference to the following thread: http://stackoverflow.com/questions/498636/java-app-unable-to-read-iso-8859-1-encoded-file-correctly What is the best way to programatically determine the …
4
votes
2answers
658 views

How to read/store unicode with STL strings and streams

I need to modify my program to accept Unicode, which may come from any of UTF-8 and the various UTF-16 and UTF-32 encodings. I don't really know much about Unicode (though I've read Joel Spolsky's …
4
votes
3answers
1k views

Convert a String to Stream

I've download an image from the Internet and converted to a String (This is not changeable) Dim Request As System.Net.WebRequest = _ System.Net.WebRequest.Create( _ …
3
votes
3answers
337 views

C# read unicode?

Hi. I am receiving a unicode message via the network, which looks like: 74 00 65 00 73 00 74 00 3F 00 I am using a BinaryReader to read the stream from my socket, but the problem is that it doesn't …

1 2 3 4 5 13 next
15 30 50 per page