Tagged Questions

1
vote
2answers
68 views

C# OutOfMemoryException on MemoryStream writing

I have a little sample application I was working on trying to get some of the new .Net 4.0 Parallel Extensions going (they are very nice). I'm running into a (probably really stupi …
3
votes
3answers
89 views

How do I convert an InputStream to a String in Java?

Suppose I have an InputStream that contains text data, and I want to convert this to a String (for example, so I can write the contents of the stream to a log file). What is the e …
4
votes
3answers
100 views

Compose output streams

I'd like to compose two (or more) streams into one. My goal is that any output directed to cout, cerr, and clog also be outputted into a file, along with the stream. (For when thin …
2
votes
4answers
62 views

Can STDOUT and STDERR use different colors under XTerm / Konsole?

Is it even achievable? We need STDERR (ie. other streams then STDOUT) to have different colo(u)r. For example red. We use bash, terminal should be Konsole (XTerm, gnome terminal …
1
vote
2answers
24 views

XmlDocument.Save omitting elements

I have the following XML that is built up at runtime using an XmlDocument: <?xml version="1.0" standalone="yes"?> <NewConfig xmlns="http://tempuri.org/NewConfig.xsd"> …
1
vote
3answers
74 views

C# Stream Design Question

I have an appliction right now that is a pipeline design. In one the first stage it reads some data and files into a Stream. There are some intermediate stages that do stuff to the …
0
votes
1answer
34 views

Chunkinfying stream. Is code correct? Need a second set of eyes.

Can anyone see any obvious holes in my logic here. Basically I need to break up a byte array into chunks of 10,000 before sending it out: byte [] bytes = GetLargePieceOfData(); …
0
votes
1answer
14 views

APN Error in Server Script (php)

Hi All, I am getting this error in my php script , while sending payload data. Warning: stream_socket_client() [function.stream-socket-client]: Unable to set private key file `/A …
0
votes
4answers
46 views

java: StringBufferOutputWriter or StringBufferOutputStream?

I need to take a caught exception and get a String that is what would be printed using printStackTrace(). It looks like the simplest thing is to call printStackTrace(X), where X s …
3
votes
8answers
98 views

flush in java.io.FileWriter.

I have a question in my mind that, while writing into the file, before closing is done, should we include flush()??. If so what it will do exactly? dont streams auto flush?? EDIT: …
1
vote
4answers
111 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 …
3
votes
3answers
49 views

How do I get the InputStream of decompressed data from an InputStream of GZIPed data?

I call a service which returns a gzipped file. I have the data as an InputStream (courtesy of javax.activation.DataHandler.getInputStream();) from the response. What I would like …
0
votes
2answers
20 views

Problem getting Java Streams in HP Tandem (Non-Stop)

Hi. We are porting a simple Java application between Tandem NonStop systems, from G-Series to H-Series. Java version is 1.5.0_02. When performing basic I/O tasks like getting out …
1
vote
4answers
69 views

How java.io.Buffer* stream differs from normal streams?

How buffered streams are working on the background and how it actually differs and what is the real advantage of using the same? Another Query,.. Since DataInputSytream is also By …
1
vote
4answers
70 views

Sending a file via HTTP PUT in PHP

I've been struggling for several hours trying to figure out how to get this work. I'm trying to send a file via HTTP-PUT to an eXist db. There is user authentication for the serv …

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