Top "Inputstream" questions

An abstract mechanism for reading a data stream in Java

Adding characters to beginning and end of InputStream in Java

I have an InputStream which I need to add characters to the beginning and end of, and should end up …

java inputstream bufferedinputstream
Apache HttpClient in Java, instream.toString = org.apache.http.conn.EofSensorInputStream

I am GETting a page with Apache HttpClient and I want to store the server reply's http body into a …

java httpclient inputstream http-get
Receiving Data from NSInputStream in Swift

I try to send and receive data with NSOutputStream and NSInputStream in Swift. The sending of data is working well, …

swift inputstream nsstream
Using FileChannel to write any InputStream?

Can I write any InputStream into a FileChannel? I'm using java.nio.channels.FileChannel to open a file and lock …

java inputstream filelock filechannel
How to clone an inputstream in java in minimal time

Can someone tell me how to clone an inputstream, taking as little creation time as possible? I need to clone …

java clone inputstream bufferedinputstream
IOException while reading from InputStream

I'm running into a strange problem while reading from an InputStream on the Android platform. I'm not sure if this …

java android inputstream ioexception
Problem with kbhit()[and getch()] for Linux

while(ch != 'q') { printf("looping\n"); sleep(1); if(kbhit()) { ch = readch(); printf("you hit %c\n",ch); } } This code gives …

c console inputstream getch
Clear input buffer after fgets() in C

#include <stdio.h> int main() { char name[10]; for(int i=0;i<=10;i++) { printf("Who are you? "); if(…

c inputstream fgets fflush
Is there a nice, safe, quick way to write an InputStream to a File in Scala?

Specifically, I'm saving a file upload to local file in a Lift web app.

java file scala inputstream lift
Reading an inputStream all at once

I have developed a j2me application that connects to my webhosting server through sockets. I read responses from the …

java sockets java-me inputstream