0
votes
1answer
29 views
reading excel cell contents as Java InputStream
this code reads contents of cell of excel file into a string
String theCell_00=rs.getCell(j,i).getContents();
is there any method using which the contents of excel cell are read …
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 …
0
votes
2answers
19 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 …
1
vote
2answers
47 views
how to catch blank input with scanner class in java
I am using the scanner class to capture user input from the command line (strings only), as an alternative to my previous question.
The following seems to work fine, except the bl …
-2
votes
3answers
55 views
starting vlc player in java
Hey!
I tried to start vlc player in Java, but somehow it did not word.
Any other Prog I tried worked.
Plz have a look at my code:
try {
Runtime.getRuntime().exec("K:\\... …
1
vote
2answers
39 views
How do I create an input stream from a ZipEntry (Java)
Hi there,
I have a class which wraps ZipEntrys, but I'm struggling to see how I could then write a method that returns an input stream from any one ZipEntry. I managed to write so …
0
votes
2answers
26 views
How to log request inputstream with HttpModule, then reset InputStream position.
I am trying to log the contents of an http request, using an IHttpModule like so:
public class LoggingModule : IHttpModule
{
public void Init(HttpApplication context)
{
…
1
vote
3answers
46 views
InputStreamReader.markSupported is false
Hello,
I need to “un-read” characters from an InputStreamReader. For that purpose I wanted to use mark and reset but markSupported returns false for the InputStreamReader class, s …
3
votes
2answers
125 views
Access to Perl’s empty angle “<>” operator from an actual filehandle?
I like to use the nifty perl feature where reading from the empty angle operator <> magically gives your program UNIX filter semantics, but I'd like to be able to access this …
3
votes
1answer
63 views
In C++, can you manually set the failbit of a stream? How?
I am overloading the input stream operator for use with a Time class and would like to manually set the failbit of the input stream if the input doesn't match my expected time form …
1
vote
2answers
26 views
Visual Basic (Visual Studio 2005) redirect inputstream to process
Hi, I've been searching around the net for roughly three hours now w/o getting forward. I don't know VB very well, but I need to create a wrapper program for any executable that lo …
0
votes
1answer
41 views
Grails, getting InputStream from Controller (or even Servlet)
I'm trying to get inputStream from request, but it's always empty. Any idea
how to get the contents of it? I'm trying to make a DataInputStream from it.
0
votes
5answers
159 views
Using cin.get() to grab a line of text, then using it in a loop to display that line?
Ok, so I came across this code snippet in my textbook that's supposed to echo every other character a user types in. Now, I understand the every other character part, but I'm havin …
1
vote
1answer
175 views
Java-Sockets: InputStream.read() vs BufferedReader.read()
Hello
I'm reading from a Socket's InputStream. Because I'm parsing the incoming data on the fly, I'm required to read character by character.
Does BufferedReader.read() the same …
1
vote
1answer
55 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 InputStre …
