Tagged Questions

A stream is a series of data elements (characters, bytes or complex packets) which can be accessed or made accessible in a serial fashion. Random access is not possible.

learn more… | top users | synonyms (1)

205
votes
13answers
138k views

In Java, how do I read/convert an InputStream to a String?

If you have java.io.InputStream object, how should you process that object and produce a String? Suppose I have an InputStream that contains text data, and I want to convert this to a String (for ...
105
votes
10answers
44k views

Best way to copy between two Stream instances - C#

What is the best way to copy the contents of one stream to another? Is there a standard utility method for this?
70
votes
6answers
78k views

Get an OutputStream into a String

What's the best way to pipe the output from an java.io.OutputStream to a String in Java? Say I have the method: writeToStream(Object o, OutputStream out) Which writes certain data from the ...
60
votes
5answers
52k views

How do I save a stream to a file?

I have a StreamReader object that I initialized with a stream, now I want to save this stream to disk (the stream may be a .gif or .jpg or .pdf). Existing Code: StreamReader sr = new ...
41
votes
12answers
2k views

Can you explain the concept of streams?

I understand that a stream is a representation of a sequence of bytes. Each stream provides means for reading and writing bytes to its given backing store. But what is the point of the stream? Why ...
40
votes
9answers
43k 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? ...
27
votes
3answers
4k views

Why do C++ streams use char instead of unsigned char?

I've always wondered why the C++ Standard library has instantiated basic_[io]stream and all its variants using the char type instead of the unsigned char type. char means (depending on whether it is ...
27
votes
4answers
32k views

How do I turn a String into a Stream in java?

I need to transform a string into (finally) an InputStreamReader. Any ideas?
24
votes
2answers
12k views

bash: redirect and append both stdout and stderr

To redirect stdout in bash, overwriting file cmd > file.txt To redirect stdout in bash, appending to file cmd >> file.txt To redirect both stdout and stderr, overwriting cmd &> ...
23
votes
5answers
7k views

Does disposing streamreader close the stream?

I am sending a stream to methods to write on, and in those methods I am using a binary reader/wrtier. When the reader/writer gets disposed, either by using or just when it is not referenced, is the ...
23
votes
7answers
18k views

Easy way to write contents of a Java InputStream to an OutputStream

I was surprised to find today that I couldn't track down any simple way to write the contents of an input stream to an output stream in Java. Obviously, the byte buffer code isn't difficult to write, ...
21
votes
7answers
2k views

Best way to close nested streams in Java?

What is considered the best, most comprehensive way to close nested streams in Java? For example, consider the setup: FileOutputStream fos = new FileOutputStream(...) BufferedOS bos = new ...
21
votes
9answers
42k 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 ...
20
votes
6answers
26k views

How to convert a Reader to InputStream and a Writer to OutputStream?

Is there an easy way to avoid dealing with text encoding problems?
19
votes
3answers
6k views

How to implement the activity stream in a social network

I'm developing my own social network, and I haven't found on the web examples of implementation the stream of users' actions... For example, how to filter actions for each users? How to store the ...
17
votes
4answers
2k views

Use-cases for Streams in Scala

In Scala there is a Stream class that is very much like an iterator. The topic Difference between Iterator and Stream in Scala? offers some insights into the similarities and differences between the ...
16
votes
1answer
459 views

Saving JPEG file coming from Network Camera RTP Stream

I had a RTP Stream socket, receiving a JPEG Stream, from a samsung network camera. I dont know much about how JPEG format works, but i do know that this incoming JFIF or JPEG stream is giving me the ...
16
votes
1answer
987 views

Camera streaming using RTP from Android to PC

I'd like to write an application for Android for camera streaming to PC (H.263, MPEG_4). I found some libraries: sipandroid, jlibrtp. SIPandroid: RTP packets are streamed (wireshark catches it on PC ...
15
votes
1answer
230 views

Binary Serialization for Lists of Undefined Length in Haskell

I've been using Data.Binary to serialize data to files. In my application I incrementally add items to these files. The two most popular serialization packages, binary and cereal, both serialize ...
15
votes
3answers
9k views

Can I redirect the stdout in python into some sort of string buffer?

I'm using python's ftplib to write a small FTP client, but some of the functions in the package don't return string output, but print to stdout. I want to redirect stdout to an object which I'll be ...
15
votes
11answers
5k views

Efficient way to search a stream for a string

Let's suppose that have a stream of text (or Reader in Java) that I'd like to check for a particular string. The stream of text might be very large so as soon as the search string is found I'd like to ...
15
votes
4answers
1k views

WPF - Load Font from Stream?

I have a MemoryStream with the contents of a Font File (.ttf) and I would like to be able to create a FontFamily WPF object from that stream WITHOUT writing the contents of the stream to disk. I know ...
14
votes
3answers
1k views

Unicode support in C++0x

I'm trying to use new unicode characters in C++0x. So I wrote sample code: #include <fstream> #include <string> int main() { std::u32string str = U"Hello World"; ...
14
votes
7answers
2k views

C++ custom stream manipulator that changes next item on stream

In C++, to print a number in hexadecimal you do this: int num = 10; std::cout << std::hex << num; // => 'a' I know I can create a manipulator that just adds stuff to the stream like ...
14
votes
6answers
5k views

How to write the content of one stream into another stream in .net?

I often run into the problem that I have one stream full of data and want to write everything of it into another stream. All code-examples out there use a buffer in form of a byte-array. Is there a ...
13
votes
8answers
762 views

how to generate a stream from a string?

I need to write a unit test for a method that takes a stream which comes from a txt file, I would like to do do something like this: Stream s = GenerateStreamFromString("a,b \n c,d");
13
votes
3answers
1k views

Play WAV file backward

I'm making Braid in Java. If you rewind the time, the sound plays backward. How to play a WAV file backwards? Maybe with a stream with something like previous()? On the site of Braid can you see what ...
13
votes
2answers
4k views

ASP.NET MVC FileStreamResult not working as intended

I have the following code which I stripped out of any non-essential lines to leave the minimun reproducable case. What I expect is for it to return the image, but it doesn't. As far as I can see it ...
12
votes
5answers
535 views

What does stream means? What are it's characteristics?

C++ and C# both use this word stream to name many classes. C++ : iostream, istream, ostream, stringstream, ostream_iterator, istream_iterator and so on. C# : Stream, FileStream,MemoryStream, ...
12
votes
6answers
15k views

Silverlight 4.0 PDF Viewer

Any free control to view PDF for Silverlight? or how to view pdf in silverlight from memory stream?
12
votes
6answers
5k views

Create Zip file from stream and download it

I have a DataTable that i want to convert it to xml and then zip it, using DotNetZip. finally user can download it via Asp.Net webpage. My code in below dt.TableName = "Declaration"; ...
12
votes
4answers
11k views

Difference between java.io.PrintWriter and java.io.BufferedWriter?

Please look through the below code, // A.java File file=new File("blah.txt"); FileWriter fwriter=new FileWriter(file); PrintWriter pwriter=new PrintWriter(fwriter); //B.java File file=new ...
12
votes
3answers
1k 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?
11
votes
2answers
332 views

delete cout; delete cin; do not give compilation error - a flaw in the Standard library?

Will the following give a compilation error? delete cout; delete cin; The answer is : No. It is a flaw in the implementation of stream classes from the Standard library. They have the following ...
11
votes
5answers
785 views

How to create or manipulate GPU assembler?

Does any one have experience in creating/manipulating GPU machine code, possibly at run-time? I am interested in modifying GPU assembler code, possibly at run time with minimal overhead. ...
11
votes
8answers
654 views

How to speed-up loading of 15M integers from file stream?

I have an array of precomputed integers, it's fixed size of 15M values. I need to load these values at the program start. Currently it takes up to 2 mins to load, file size is ~130MB. Is it any way to ...
11
votes
5answers
2k views

Reading formatted data with C++'s stream operator >> when data has spaces

I have data in the following format: 4:How do you do? 10:Happy birthday 1:Purple monkey dishwasher 200:The Ancestral Territorial Imperatives of the Trumpeter Swan The number can be anywhere from 1 ...
10
votes
3answers
170 views

std::ostringstream printing the address of the c-string instead of its content

I have stumbled on a weird behavior that I just could not explain at first (see ideone): #include <iostream> #include <sstream> #include <string> int main() { std::cout << ...
10
votes
3answers
216 views

D: What about streams?

D seems like a language with very high potential and I'm highly interested in what the future holds for it. I'm curious though, is there any discussion about including streams in D? The C++ streams ...
10
votes
3answers
3k views

Redirect C++ std::clog to syslog on Unix

I work on Unix on a C++ program that send messages to syslog. The current code uses the syslog system call that works like printf. Now I would prefer to use a stream for that purpose instead, ...
10
votes
6answers
790 views

Can SHA-1 algorithm be computed on a stream? With low memory footprint?

I am looking for a way to compute SHA-1 checksums of very large files without having to fully load them into memory at once. I don't know the details of the SHA-1 implementation and therefore would ...
10
votes
3answers
911 views

C++ stream operator question

I suppose this might be simple question for all the gurus here but I somehow couldn't figure out the answer. I want to be able to write csv cells to stream as simple as this: stream << 1 ...
10
votes
3answers
9k views

Most efficient way to create InputStream from OutputStream

This page: http://ostermiller.org/convert_java_outputstream_inputstream.html describes how to create an InputStream from OutputStream: new ByteArrayInputStream(out.toByteArray()) Other ...
10
votes
5answers
4k views

HttpWebRequest & Native GZip Compression

When requesting a page with Gzip compression I am getting a lot of the following errors: System.IO.InvalidDataException: The CRC in GZip footer does not match the CRC calculated from the ...
10
votes
4answers
5k 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 ...
10
votes
9answers
7k views

Closing a Java FileInputStream

Alright, I have been doing the following (variable names have been changed): FileInputStream fis = null; try { fis = new FileInputStream(file); ... process ... if (fis != null) ...
9
votes
3answers
234 views

Get file name from byte array or Stream

Is possible get filename from byte array or stream? I do not want to save the file. I just want to retrieve the name.
9
votes
3answers
611 views

How to compute palindrome from a stream of characters in sub-linear space/time?

I don't even know if a solution exists or not. Here is the problem in detail. You are a program that is accepting an infinitely long stream of characters (for simplicity you can assume characters are ...
9
votes
4answers
1k views

Some questions about writing on ASP.NET response stream

I'm making tests with ASP.NET HttpHandler for download a file writting directly on the response stream, and I'm not pretty sure about the way I'm doing it. This is a example method, in the future the ...
9
votes
5answers
25k views

Android Reading from an Input stream efficiently

I am making an HTTP get request to a website for an android application I am making. I am using a DefaultHttpClient and using HttpGet to issue the request. I get the entity response and from this ...

1 2 3 4 5 46