0
votes
3answers
62 views

comma separated stream into struct

I have a structure with an int and two strings. When reading in the file it is comma seperated for the first two values and the last value is terminated by a newline. The third argument could be empty ...
2
votes
1answer
48 views

In what practical case bool(std::ifstream) != std::ifstream::good()?

I would like to know in what case we can have : bool(std::ifstream) != std::ifstream::good() The difference is that bool(std::ifstream) does not test the eof bit whereas std::ifstream::good() tests ...
0
votes
1answer
32 views

why is EOFException used mainly by data input streams?

From Java API public class EOFException extends IOException Signals that an end of file or end of stream has been reached unexpectedly during input. This exception is mainly used by ...
0
votes
1answer
18 views

From Wcf streaming service to directly to disk

I have got a wcf service that sends me streams (large ones usually). As the client application my role is to get a stream over WCF and save it to disk. I've written some code but it seems like first ...
-1
votes
2answers
42 views

Possible Infinite Loop when streaming response

We are trying to identify high CPU usage in services we have, and we believe there are a few potential areas that may be causing infinite loops. Below is code that we believe may potentially be ...
-1
votes
3answers
52 views

If i sent the following response to my browser, am I suposed to get any kind of feedback?

For an assignment, I have written a server that services HTML files and I am suposed to use my web browser as a test client. I am also told that if there is a request for a file that doesn't exist i ...
0
votes
1answer
44 views

Java sockets and file Streaming

I have a basic question on files ... It seems that I am stuck. I am creating a server-client socket. The client sends a random number of integers to the server using an iterative way and the methods ...
-1
votes
1answer
44 views

Unable to read password in java passed when invoked from perl IO stearm

We are invoking Java code from Perl using the following command: $fh = IO::Handle->new(); open($fh,"| $command"); The command is: java MyJavaClass In the Java code we need to prompt the user ...
1
vote
1answer
82 views

How can I do stdin.close() with the new Streams API in Dart?

I ask user for input in my command line (dart:io) app. After I get my answer from the user, I want to unsubscribe from the Stream. Then, later, I may want to listen to it again (but with different ...
2
votes
1answer
180 views

Excel Import to DataSet Breaks When File Is Open

I have a service that I am using for excel file imports, and the implementation is shown below: [Attributes.ImportFileExtension(Extension=".xls")] [Attributes.ImportFileExtension(Extension=".xlt")] ...
0
votes
2answers
35 views

bad input stream

I'm trying to pass some arguments into a new function that adds a column to a flat file. The call goes like: (add-col-to-ff '(:absolute "home" "lambda" "Documents") "test-col-col" ...
2
votes
3answers
88 views

How to open custom I/O streams from within a C++ program? [duplicate]

It is well known that there are three default I/O streams which are mapped to predefined objects in the standard library: 0: std::istream std::cin 1: std::ostream std::cout 2: std::ostream std::cerr ...
-2
votes
1answer
181 views

How to getinput stream and display it in textArea?

I am sending a stream to my client. How can I read that stream in the client line by line, into a text area in my client? My server code for sending data: public class Server extends ...
2
votes
2answers
61 views

How to check if next input is empty?

I'm trying to redirect a file as stdin input (one of the requirements). I can't figure out how to check if the next input is empty or if it's done. something like this ./a.out program < file.txt ...
2
votes
2answers
113 views

Non blocking stream that supports seek from http response in Python

I have an http response from urllib response = urllib2.urlopen('http://python.org/') Eventually, I want to be able to seek() within the response (at least to the beginning). So I want to be able to ...
1
vote
2answers
77 views

How do Ruby Directories work?

Dir-s seem awkward as compared to File-s. Many of the methods are similar to IO methods, but a Dir doesn't inherit from IO. For example, tell in the IO docs reads: Returns the current offset (in ...
0
votes
1answer
38 views

Are inputstreams/readers always meant to be closed?

When we pass an InputStream or a Reader to an InputSource who/when is the stream/reader is to be closed? In the example in saxproject the streams/readers are not closed. Why? Am I not supposed to ...
0
votes
1answer
141 views

Exception while showing a downloaded image in windows store apps

Hi I am downloading an image from the following code HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Get, imageUri); HttpResponseMessage response = await ...
6
votes
1answer
556 views

Buffered and Unbuffered Streams in Java

I was going through some of the documentation on Java IO and just wanted to make sure whether I get this right: Unbuffered Input Streams: FileInputStream, InputStreamReader, FileReader Unbuffered ...
1
vote
1answer
128 views

Reading error stream from a process

I am writing a java program to read the error stream from a process . Below is the structure of my code -- ProcessBuilder probuilder = new ProcessBuilder( command ); Process process = ...
2
votes
1answer
63 views

Reading both newline types from an already opened file in python

I'm using subprocess.popen to run a command and grab the stdout. It so happens that the program (mplayer) sort of uses both eol types \n and \r. The \rs come from terminal control characters. So the ...
1
vote
3answers
212 views

eof bit : before or after a read failure?

I currently write a class for some IO operations. Some functions return whether the IO operation was successful. If I'm reading a file, I wonder if I should return std::ifstream::good() or ...
2
votes
0answers
85 views

Which streaming API to implement in Cocoa/iOS/MacOSX?

There are a couple of streaming functions and/or classes in iOS/MacOSX. If I wanted to implement my own custom stream i.e. some object that either provides or consumes sequential bytes of data, which ...
0
votes
1answer
3k views

The process cannot access the file '…' because it is being used by another process [duplicate]

Possible Duplicate: Error opening streamreader because file is used by another process In C#, I am trying to build a program that copies a certain amount of files or directories that are ...
0
votes
2answers
53 views

Java: Possible to have more than one type of stream?

Wondering if one can do something like this successfully: Socket s = new Socket("", 1234); BufferedInputStream in = new BufferedInputStream(s.getInputStream()); BufferedOutputStream out = new ...
-1
votes
2answers
191 views

How to make two java classes talk to each other? [closed]

Okay. Clearly, the first example was too complicated. So here's the bare problem. ClassA might be runnable. ClassB IS runnable. ClassA will have access to 0 or 1 instance ClassB. ClassA has a method ...
0
votes
0answers
130 views

Java StreamCorrupted Exception when reading objects

My application here will just ask the user to input A question, together its correct answer and choices and then after it is finish asking the user for questions it will write it (it is an object) to ...
0
votes
1answer
501 views

Java EOFException on reading a file

I am reading a file in Java using this code import java.io.*; public class IOReadDataStreams { public static void main(String[] args)throws IOException{ DataInputStream in = null; ...
3
votes
1answer
277 views

How to skip bytes in a Stream

How to most efficiently skip some number of bytes in any Stream? If possible, I'd like to get or throw an EndOfStreamException when trying to skip past the end of the stream. I am writing a custom ...
6
votes
3answers
233 views

Cannot output the stream to the browser

I just written a small program to test something, as below: public class Main { public static void main(String[] args){ ServerSocket serverSocket = null; Socket clientSocket = ...
0
votes
3answers
145 views

How to read a line of string from a particular location

I'm working with a really really big file. I'm talking about gigabyte big. I need to be able to read a line from a particular index as the textfile is consistently being updated. What is the fastest ...
0
votes
2answers
97 views

Transferring data in Java using streams

I have been reading the Java Tutorials on I/O in an attempt to understand stream and their proper usage. Say I have two devices that are connected, and an InputStream and OutputStream on both devices. ...
2
votes
2answers
124 views

How can I associate a stream (FILE *) with stdout?

Right now each module is writing to stderr, thus I cannot turnoff output of an individual one. Does anyone know how I can associate a stream with stdout thus each module will write to independent ...
0
votes
1answer
501 views

Log to memory then write to file, memory stream vs file compared

this is in references to my previous question Log to memory and then write to file, actually the edit part of that question, I asked in edit part that if I write to memory would that be faster than ...
0
votes
2answers
175 views

How to find whether a file is still being streamed?

I am writing a small program to automatically change the desktop wallpaper, from an online image gallery (imgur). Currently I have this code: namespace Imgur_Wallpapers { public partial class ...
10
votes
4answers
1k views

Perl: Redirect STDOUT to two files

How can I redirect the STDOUT stream to two files (duplicates) within my Perl script? Currently I am just streaming into a single log file: open(STDOUT, ">$out_file") or die "Can't open ...
0
votes
1answer
430 views

Convert binary input stream to text mode

I am trying to read a bzip2-compressed CSV file in Python 3.2. For an uncompressed CSV file, this works: datafile = open('./file.csv', mode='rt') data = csv.reader(datafile) for e in data: # works ...
0
votes
1answer
79 views

what if we exceed the capacity of allocating buffer in ByteBuffer.allocate(48) NIO package class in java

file = new RandomAccessFile("xanadu.txt", "rw"); FileChannel channel = file.getChannel(); ByteBuffer buffer = ByteBuffer.allocate(48); int byteReads = channel.read(buffer); ...
3
votes
2answers
163 views

What happens when an input Buffer in Java gets flushed automatically?

I just read that Some buffered output classes support autoflush, specified by an optional constructor argument. When autoflush is enabled, certain key events cause the buffer to be flushed. ...
3
votes
2answers
121 views

Why to avoid using ByteStream much in Java

We shouldn't use byte Stream as Sun Doc says - actually it represents a kind of low-level I/O that you should avoid. What is actually low-level I/O and what is exact problem using byte stream.
0
votes
1answer
1k views

java.io.IOException: Premature EOF while downloading pdf over https

I get an error when trying to download a pdf with java. I know there are similar questions, but not as specific as mine. My code snippet: URL url = new URL("https://.../abc.pdf"); HttpURLConnection ...
2
votes
2answers
238 views

Java 6 File Input Output Stream (same file)

I searched and looked at multiple questions like this, but my question is really different than anything I found. I've looked at Java Docs. How do I get the equivalent of this c file open: stream1 ...
0
votes
1answer
498 views

How do I read a 2D array as it is from a .txt file?

I have this .txt file with the following format and contents (take note of the spaces): Apples 00:00:34 Jessica 00:01:34 Cassadee 00:00:20 I want to store them into a 2D array (holder[5][2]) AND ...
1
vote
1answer
152 views

PROLOG File Stream Manipulation; term extraction for processing

File Stream Manipulation PROLOG I'm working on a case-based reasoning subsystem for academic advising that is able to take a new student profile (transcript) and compare it to database of ...
0
votes
1answer
105 views

having file names and delete them

I want to have access to all files of a folder and have a list of them and work with them. For example: there is a folder named "new folder" and consist of files : 1.txt and 2.txt I don't know what ...
0
votes
0answers
44 views

Can I close() PipedInputStream, create new one and all with the same PipedInputStream?

Is it possible to replace PipedInputStream connected connected to the same PipedOutputStream?
0
votes
1answer
636 views

Using php proc_open() with multiple input streams. Preventing hangs

Seems like I'm having problems using the streams which are piped to a process when using the proc_open() php function. The process I'm starting is simply the convert ImageMagick utility to compose 3 ...
5
votes
1answer
235 views

What's recommended practice for bitset manipulation?

I'm working on a machine simulation program. I've got a vector of bitsets for main memory, so that I may use a pointer to this vector, pMemory->at(i), to access any specific "word". I really do ...
1
vote
1answer
341 views

DataInputStream from socket

Update - Moving to consistent type provided solution Client sends message to server socket, the server then responds to the client with original message. When introducing the latter functionality, ...
0
votes
1answer
94 views

Reading A stream through stream.read instead of using a StreamReader

I am trying to get a request and read it like: byte[] buffer; Stream read = http.GetResponseStream(); string readIt = read.Read(buffer, 0, read.Length) But it throws an error with invalid argument. ...

1 2 3