Tagged Questions
The outputstream tag has no wiki summary.
13
votes
6answers
681 views
Are the C formatted I/O functions (printf, sprintf, etc) more popular than IOStream, and if so, why? [closed]
I've been looking through a lot of code made by others lately and happened to notice everyone uses "printf" style C functions a lot, but the C++ functions learned in school (cout, specifically) don't ...
10
votes
4answers
5k views
Should one call .close() on HttpServletResponse.getOutputStream()/.getWriter()?
I couldn't find an authoritative answer to this with some Googling. In Java servlets, one can access the response body via response.getOutputStream() or response.getWriter(). Should one call .close() ...
7
votes
1answer
3k views
How to put the content of a ByteBuffer into an OutputStream?
I need to put the contents of a java.nio.ByteBuffer into an java.io.OutputStream. (wish I had a Channel instead but I don't) What's the best way to do this?
I can't use the ByteBuffer's array() ...
7
votes
9answers
10k views
Reading from a ZipInputStream into a ByteArrayOutputStream
I am trying to read a single file from a java.util.zip.ZipInputStream, and copy it into a java.io.ByteArrayOutputStream (so that I can then create a java.io.ByteArrayInputStream and hand that to a 3rd ...
6
votes
3answers
808 views
Sharing output streams through a JNI interface
I am writing a Java application that uses a C++ library through a JNI interface. The C++ library creates objects of type Foo, which are duly passed up through JNI to Java.
Suppose the library has an ...
6
votes
5answers
3k views
Why Java OutputStream.write() Takes Integer but Writes Bytes
I am writing an OutputStream, just noticed this in the OutputStream interface,
public abstract void write(int b) throws IOException;
This call write one byte to the stream but why it takes ...
5
votes
1answer
879 views
Overloading Output operator for a class template in a namespace
I've this program
#include <iostream>
#include <sstream>
#include <iterator>
#include <vector>
#include <algorithm>
using namespace std ;
#if 0
namespace skg
{
...
5
votes
3answers
1k views
Byte[] to InputStream or OutputStream
I have a blob column in my database table, for which I have to use byte[] in my Java program as a mapping and to use this data I have to convert it to InputStream or OutputStream. But I don't know ...
5
votes
5answers
6k views
What is InputStream & Output Stream? Why do we use them and when do we use each of them?
It sounds like a very silly question but can anyone explain me about Input stream and output stream.
I remain confused about when do we need input stream and when we need output stream?
An explanation ...
4
votes
1answer
61 views
Benefits of using flush() close() in Android streams?
I know the general idea but I'm just not sure if it has an effect since the Android api states following: "Flushes this stream. Implementations of this method should ensure that any buffered data is ...
4
votes
1answer
419 views
Log4J: How do I redirect an OutputStream or Writer to logger's writer(s)?
I have a method which runs asynchronously after start, using OutputStream or Writer as parameter.
It acts as a recording adapter for an OutputStream or Writer (it's a third party API I can't change).
...
4
votes
3answers
151 views
How do I take the output of one program and use it as the input of another on C++?
I have a program that takes the counts of experiments as command string argument and outputs the sequence of floating numbers.
Example:
im_7.exe 10
10.41
13.33
8.806
14.95
15.55
13.88
10.13
12.22
...
4
votes
4answers
369 views
How can a Java program use files inside the .jar for read and write?
I need to store data into files inside .jar file and read it again.
I know that I can use Class.getResourceAsStream() method but it returns an InputStream that I can read from. But I look for a way ...
4
votes
2answers
908 views
Do I need to flush the servlet outputstream?
Do I need to "flush" the OutputStream from the HttpServletResponse?
I already saw from to Should I close the servlet outputstream ? that I don't need to close it, but it's not clear if I need to ...
4
votes
2answers
224 views
cl-pdf output error
I'm trying to use cl-pdf for some fairly basic PDF generation, but I'm getting tripped up at the examples (which is embarassing to say the least).
When I run the first example included in the package
...
4
votes
1answer
620 views
How can I convert an uncompressed InputStream into a gzip'ed InputStream efficiently?
A user uploads a large file to my website and I want to gzip the file and store it in a blob. So I have an uncompressed InputStream and the blob wants an InputStream. I know how to compress an ...
3
votes
3answers
135 views
Running Batch files & Reading LAST Line of Output after a Pause
I've got a web application that has a page full of batch files which the user can run, view the output, and send input. My problem occurs when the process hits something which causes it to pause, such ...
3
votes
2answers
81 views
Java: how can I format text on an OutputStream to the width of the user's console?
Specifically, I would like text sent to the user's OutputStream to have word wrapping so that when text continues onto a new line, words are not broken up. So instead of this:
The quick brown fox j
...
3
votes
5answers
209 views
C++ - How to print (using cout) the way a number is stored in memory?
I'm following a college course about operating systems and we're learning how to convert from binary to hexadecimal, decimal to hexadecimal, etc. and today we just learned how signed/unsigned numbers ...
3
votes
3answers
171 views
How do you pipe an OutputStream and InputStream to console?
When running a process, how do I pipe it's output to System.out and it's input to System.in:
Process p = Runtime.getRuntime().exec("cubc.exe");
// do something with p.getOutputStream())
EDIT: I ...
3
votes
3answers
3k views
Java - converting from OutputStream to InputStream
I am on the stage of development, where I have two modules and from one I got output as a OutputStream and second one, which accepts only inputStream. Do you know how to convert OutputStream to ...
3
votes
5answers
314 views
Java Detect Closed Stream
I have a general socket implementation consisting of an OutputStream and an InputStream.
After I do some work, I am closing the OutputStream.
When this is done, my InputStream's read() method ...
3
votes
1answer
167 views
How to stream-filtering PHP’s standard output data?
Is it possible to filter the data of PHP’s standard output in a stream-like fashion:
standard output ⟶ output filter ⟶ standard output
I’m already aware of ob_start. But I don’t want to process ...
3
votes
1answer
253 views
Android PipedOutputStream / PipedInputStream transfer byte by byte seems wrong
The Android implementation of PipedOutputStream
write(byte[] buffer, int offset, int count)
is implemented in terms of write(byte oneByte).
More specific the PipedOutputStream
write(byte[] ...
3
votes
3answers
363 views
Piping data through an external application on Windows using Java
I have a Java-app with an InputStream, which is copying data to an OutputStream. I want to compress the data from the InputStream using FreeArc, before writing it to the OutputStream.
The problem is ...
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
1answer
608 views
Android - Persist file when app closes
I am creating a file in my Android application as follows:
HEADINGSTRING = new String("Android Debugging " + "\n"
"XML test Debugging");
}
public void setUpLogging(Context ...
3
votes
3answers
649 views
How to put data from an OutputStream into a ByteBuffer?
In Java I need to put content from an OutputStream (I fill data to that stream myself) into a ByteBuffer. How to do it in a simple way?
3
votes
7answers
2k views
Function that prints something to std::ostream and returns std::ostream?
I want to write a function that outputs something to a ostream that's passed in, and return the stream, like this:
std::ostream& MyPrint(int val, std::ostream* out) {
*out << val;
...
3
votes
5answers
4k views
How do I zip on the fly and stream to Response.Output in real time?
I am trying to use the following code: I get a corrupted zip file. Why?
The file names seem OK. Perhaps they are not relative names, and that's the problem?
private void ...
3
votes
2answers
2k views
Testing what's written to a Java OutputStream
I am about to write junit tests for a XML parsing Java class that outputs directly to an OutputStream. For example xmlWriter.writeString("foo"); would produce something like ...
2
votes
2answers
30 views
How do I return a zip file to the browser via the response OutputStream?
In this situation, I have created a zip file containing search result files, and am trying to send it to the user. Here is the chunk of code I am currently trying to use.
File[] zippable = new ...
2
votes
1answer
93 views
Bluetooth-connection; can't send strings properly
I have troubles with my program when i need to send Strings from my server bluetooth-socket to my client bluetooth-socket.
Everything works fine as long as I am only sending one String at a time (for ...
2
votes
3answers
46 views
Do i need to handle or ignore the IOException fired by OutputStream close() function?
In the following code the close function for outPutStream throw an IOException exception that I should catch. My question is do I need to handle it? Since I'm working with mobile devices and I want to ...
2
votes
3answers
79 views
How to write data to two java.io.OutputStream objects at once?
I'm looking for magical Java class that will allow me to do something like this:
ByteArrayOutputStream byteStream = new ByteArrayOutputStream();
FileOutputStream fileStream = new FileOutputStream(new ...
2
votes
2answers
232 views
Get Command Prompt Output to String
Well, the problem isn't entirely solved. I still have a problem, but I figured out a few problems. My code was pretty much all fine after Dave helped me understand the difference between InputStream ...
2
votes
2answers
50 views
How to disable System.setOut and setErr at runtime/startup?
How to prevent other classes changing the System.out? I would like to set the System.out PrintStream in App.main and make it a final so it can't be changed anymore form the other parts of the App. Is ...
2
votes
3answers
272 views
How can I read a file to an InputStream then write it into an OutputStream in Scala?
I'm trying to use basic Java code in Scala to read from a file and write to an OutputStream, but when I use the usual while( != -1 ) in Scala gives me a warning "comparing types of Unit and Int with ...
2
votes
5answers
122 views
Question regarding streams in java
We have the below requirement.
We will have to create an excel/pdf report and then download it on click of a button in a java web application. The pdf/excel file is dynamically created using ...
2
votes
6answers
154 views
What is the proper way to write/read a file with different IO streams
I have a file that contains bytes, chars, and an object, all of which need to be written then read. What would be the best way to utilize Java's different IO streams for writing and reading these ...
2
votes
2answers
387 views
Tomcat, Comet and getOutputStream() has already been called for this response
I am using Tomcat 6.0.32 with the Http11NioProtocol connector to implement long polling.
My comet processor is holding the HttpSevletResponse on a queue until an event is ready to send back. When it ...
2
votes
3answers
351 views
Class that inherits std::ostream and operator<< for QString
Hell ! I'm trying to make a class that would help me with outputting text to stdout ... Anyway, everything is working, except for one thing. Let's say that I've create object of my class called out. ...
2
votes
2answers
181 views
How could I know the status of the socket connection inside a PrintWriter
I use
PrintWriter output = new PrintWriter(socket.getOutputStream(), true);
......
output.println(message);
......
Since the println function doesn't has return value, it don't throw any ...
2
votes
1answer
199 views
How to use multiple with one OutputStream
I need to show four charts on a grails page in a grid layout with positions 11, 12, 21 and 22. Each chart is build with a code similar to:
<img src="${createLink(controller:'paretoChart', ...
2
votes
1answer
588 views
Sending Large files as stream to process.getOutputStream
I am using gzip utilities in windows machine. I compressed a file and stored in the DB as blob. When I want to decompress this file using gzip utility I am writing this byte stream to ...
2
votes
1answer
1k views
In Android, How to close InputStream and OutputStream
I connected to a server after then, to close InputStream and OutputStream call the belows.
try {
if (mInputStream != null) {
mInputStream.close();
mInputStream = null;
...
2
votes
1answer
507 views
jQuery ajax call to httphandler returning zip file
I have an httphandler that creates a zip file and returns it for download.
context.Response.AppendHeader("content-disposition", "attachment; filename=myfile.zip");
Is it possible to call the handler ...
2
votes
2answers
608 views
Scala socket cannot write to output stream
I'm new in the scala world, so excuse my trivial question. :) I just want to open a socket to a port and sand and receive messages.
If I receive a HELO, I want to react with a message, but I'm not ...
2
votes
3answers
274 views
java writeInt from php,
hey all i am trying to make a data output stream in php
to write back primitive data types to a java application
i created a class that write the data to an array
(write it same as java do , copy ...
2
votes
5answers
355 views
Problem with POSTing XML data to an API using Java
I'm having problem with sending XML-data using HTTP POST to an API.
If I send well formatted XML, I get an error message:
Server Exception: Cannot access a closed Stream
If the XML isn't well ...