5
votes
5answers
396 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 …
4
votes
9answers
3k 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 …
3
votes
3answers
455 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() …
2
votes
4answers
237 views
How can I implement an OutputStream that I can rewind?
After writing out some processed content to an output stream, I need to revisit the beginning of the stream and write out some content metadata. The data I'm writing is very large, as much as 4Gb, …
1
vote
3answers
37 views
cancel a read from an InputStream
Currently I am using an ObjecInputStream to read from a Socket, and everything works fine using this simple code:
ObjectInputStream input = new ObjectInputStream(socket.getInputStream());
Object …
1
vote
3answers
47 views
Reponse outputstream content length?
I am writing to output stream through various methods. How can I, before I close it, find out content length of the outputstream?
1
vote
1answer
59 views
Multiple read from an InputStream at different rates
I'm about to load an online content (say an audio file). If I just open a connection to the remote file (for example by use of new URL().openStream()) and pass the remote InputStream to the audio …
1
vote
2answers
140 views
Write a binary downloaded file to disk in Java
Hello,
I have a software that allow to write add-on in javascript files (.js) that allow to use Java function (I don't know if this is common, I never saw java call in javascript file before)
I'm …
1
vote
1answer
88 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 …
1
vote
3answers
116 views
Java - passing input into external C/C++ application
I'm trying to enter some value in external application using Java.
Java application looks like this:
Runtime runtime = Runtime.getRuntime();
// ... str build ...
proc = runtime.exec(str);
…
1
vote
8answers
395 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;
…
1
vote
1answer
153 views
Switching Writers on an OutputStream in Java
I have one method that opens a file and passes off to another function to write some data to it. That second method wants to use PrintWriter to write its data. However, I didn't want to require that …
0
votes
2answers
31 views
Java Project Modules - use InputStream/OutputStream or .tmpFile/byte[]
Hi all,
I found myself passing InputStream/OutputStream objects around my application modules.
I'm wondering if it's better to - save the content to disk and pass something like a Resource between …
0
votes
1answer
262 views
java servlet: generate zip file from BLOBs
I'm trying to zip a large number of pdf files (stored as BLOBs in the DB) and then return the zip as an attachment to the user.
What's the best way to do this without running into memory issues?
…
0
votes
5answers
501 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 …
