Tagged Questions

The EOF tag should be used for any end of file related issues.

learn more… | top users | synonyms

18
votes
4answers
476 views

eof() bad practice? [closed]

Possible Duplicate: Why is iostream::eof inside a loop condition considered wrong? So I've been using the eof() function in a lot of my programs that require file input, and my professor ...
14
votes
5answers
626 views

End of nonblocking file

How is end of file detected for a file in nonblocking mode?
13
votes
6answers
519 views

Why is it recommended to have empty line in the end of file?

Some code style tools recommend this and I remember seeing some unix command line tools warning about missing empty line. What is the reasoning for having an extra empty line?
10
votes
3answers
279 views

Why do I have to type ctrl-d twice?

For my own amusement, I've cooked up a python script that allows me to use python for bash one-liners; Supply a python generator expression; and the script iterates over it. Here's the script: ...
7
votes
2answers
10k views

PHP using Gettext inside <<<EOF string

I use PHP's EOF string to format HTML content without the hassle of having to escape quotes etc. How can I use the function inside this string? <?php $str = <<<EOF ...
6
votes
2answers
193 views

Prevent FIFO from closing / reuse closed FIFO

Consider the following scenario: a FIFO named test is created. In one terminal window (A) I run cat <test and in another (B) cat >test. It is now possible to write in window B and get the ...
6
votes
5answers
2k views

Can we write an EOF character ourselves?

Most of the languages like C++ when writing into a file, put an EOF character even if we miss to write statements like : filestream.close However is there any way, we can put the EOF character ...
6
votes
4answers
2k views

Checking for an empty file in C++

Is there an easy way to check if a file is empty. Like if you are passing a file to a function and you realize it's empty, then you close it right away? Thanks. Edit, I tried using the fseek ...
5
votes
1answer
105 views

Running Perl-Script from Java (embedded in Perl)

Perl accepts a scipt via STDIN. After pressing CTRL-D perl knows the "End of Script". After doing so, the script is executed. Now my question: I wand to do that from Java. Open Process Perl Copy ...
5
votes
2answers
1k views

How to use while read to read the last line in a file if there’s no newline at the end of the file?

Let’s say I have the following Bash script: while read SCRIPT_SOURCE_LINE; do echo "$SCRIPT_SOURCE_LINE" done I noticed that for files without a newline at the end, this will effectively skip the ...
4
votes
3answers
133 views

using eof on C++

i am looking for C++ coding for this pascal code var jumlah,bil : integer; begin jumlah := 0; while not eof(input) do begin readln(bil); jumlah := jumlah + bil; end; writeln(jumlah); end. i ...
4
votes
1answer
241 views

fgetc does not identify EOF

Below program runs fine on solaris/linux various flavor, but not on AIX. on AIX while(c!=EOF) if i replace by while(c!=0xff) it just run fine completely Any thought ? i checked the man page ...
4
votes
1answer
290 views

How to get boost::iostream to operate in a mode comparable to std::ios::binary?

I have the following question on boost::iostreams. If someone is familiar with writing filters, I would actually appreciate your advices / help. I am writing a pair of multichar filters, that work ...
4
votes
3answers
236 views

Can read(2) return zero when not at EOF?

According to the man page for read(2), it only returns zero when EOF is reached. However, It appears this is incorrect and that it may sometimes return zero, perhaps because the file is not ready to ...
3
votes
2answers
66 views

eof of istream in C++

bool ios::eof ( ) const; According to the library, The function returns true if the eofbit stream's error flag has been set by a previous i/o operation. This flag is set by all standard ...
3
votes
3answers
77 views

K&R: Chapter 6 - Why getword() function does not read EOF?

This is my very first post on Stack Overflow, so I hope I don't step on anyone's toes. Of course, all inputs are welcome and appreciated, but those most suited to answer would have actually read the ...
3
votes
2answers
133 views

istream_iterator ignoring EOF (Ctrl+D) when reading chars

I'm trying to use istream_iterator for reading characters from cin. I've read that pressing Ctrl+D sends an EOF character which ends the input stream. Unfortunately, something is going wrong with it. ...
3
votes
2answers
111 views

How to read whitespace delimited strings until EOF in R

I am new to R and I am currently having trouble with reading a series of strings until I encounter an EOF. Not only I don't know how to detect EOF, but I also don't know how to read a single string ...
3
votes
2answers
253 views

Why failbit set when eof on read? Is there a way out?

I've read <fstream> predates <exception>. Ignoring the fact that excpetions on fstream aren't very informative, it follows my doubt: It's possible to enable exceptions on file streams ...
3
votes
3answers
588 views

eof problem c++

i am using Dev C++ on windows xp #include <iostream> #include <fstream> #include <string> using namespace std; int main () { string STRING; ifstream infile; ...
3
votes
3answers
1k views

C# - Stream/FileStream EOF

Is anyone familiar with a way to find out you're at the end of the file? I'm using BinaryReader and tried PeekChar - but it throws an exception. Any other suggestions? Thanks.
3
votes
2answers
876 views

How do I force eof on stdin?

For a C++ application, how can I programmatically force an end of file (EOF) on stdin?
3
votes
3answers
543 views

End of File (EOF) in C

Good Day! I am currently reading the book C Programming Language by Ritchie & Kerninghan. And I am pretty confused about the usage of EOF in the getchar() function. First, I want to know why ...
3
votes
2answers
142 views

With sendfile(), is it possible to tell when in_fd is at EOF?

Reading through the man page of the Linux system call sendfile, I am wondering whether it is possible for the calling program to know when in_fd is at EOF. Presumably, this could be signaled by a ...
3
votes
2answers
607 views

How to send EOF to stdin in paramiko?

I would like to execute some program through ssh and redirect its input from a file. The behaviour of the following code: channel.exec_command('cat') with open('mumu', 'r') as f: text = f.read() ...
3
votes
4answers
2k views

How do I send an EOF for a Java InputStream element?

so i have the following code opening an input stream and collecting the information successfully: httpInput = httpConnection.openInputStream(); sb= new ...
3
votes
2answers
1k views

How to read input until EOF in Lisp

How do I read an input stream until EOF in Lisp? In C, you might do it like this: while ((c = getchar()) != EOF) { // Loop body... } The reason I am asking this is because I would like to be ...
3
votes
2answers
2k views

C : How to simulate an EOF?

I am currently reading K&R's book and typing in the examples from the first section, and there are a couple of examples such as this: while((c = getchar()) != EOF) { //do something } I am ...
2
votes
4answers
112 views

Comparing unsigned char and EOF

when the following code is compiled it goes into an infinite loop: int main() { unsigned char ch; FILE *fp; fp = fopen("abc","r"); if(fp==NULL) { printf("Unable to ...
2
votes
3answers
41 views

Getting NoSuchElementException using Scanner class to read Standard.In after reading in an EOF

So, first off, this is homework, albeit not mine. It's my brother-in-law's. He asked me for help since I do computers, but I only work in C++. He's reading in keyboard input into a file using ...
2
votes
2answers
121 views

How to read from std::cin until the end of the stream?

My problem is, that I want to read the input from std::cin but don't know how long the input is. Also I have to char and can't use std::string. There are two ways I have to handle: a) The user inputs ...
2
votes
2answers
123 views

How to find EOF in a string in java?

I am working in school project. In that what they told is, I will be given a String which contains an actual program like.... import java.io.*\npublic class A{\n...........EOF And My job is to ...
2
votes
2answers
111 views

UNIX named PIPE end of file

I'm trying to use a unix named pipe to output statistics of a running service. I intend to provide a similar interface as /proc where one can see live stats by catting a file. I'm using a code ...
2
votes
1answer
104 views

ReadFile doesn't signal EOF at the end of a PhysicalDrive

I'm trying to implement a dd equivalent in Windows. [Clarification: I'm trying to replicate the if=/dev/hda of=/dev/hdb functionality of dd, in order to migrate a windows installation to a larger HD. ...
2
votes
1answer
184 views

Why isn't this EOF javascript code appearing in the html when it is echoed?

In this php code I use the heredoc EOF to insert some javascript: $room= <<<EOF <script type="text/javascript" charset="utf-8"> test; </script> EOF; when I ...
2
votes
1answer
324 views

How i can read tty file with timeout?

I have tty device in /dev , where I send AT commands. I want to read line by line and stop reading file after timeout.
2
votes
3answers
124 views

Reading file starting at end in MATLAB

I was wondering if anyone knows how to open and read from a file in MATLAB where you begin reading from the end of the file. The file is constantly being updated (at some nonconstant rate between ...
2
votes
2answers
207 views

exec() raises 'unexpected EOF' error when encountering the : character

In the program I am writing (a text-based rpg) I am going to include 'scripts', little pieces of code that add interactive functionality to the game (such as an NPC greeting you when you enter a ...
2
votes
5answers
290 views

Why do I require multiple EOF (CTRL+Z) characters?

As a little background, I am quite new to the C Programming Language and as such have been attempting to work through some of the exercises in the second edition of the Kernighan & Ritchie manual. ...
2
votes
3answers
239 views

c++ how do you stop reading integer from text file when encounter negative integer?

Im trying to write a simple code in c++ to read in integer from a text file, the code should stop reading when it encounter a negative integer. The txt file contains 1 positive integer on each line, ...
2
votes
3answers
677 views

Update statement causes Oracle to “No more data to read from socket”?

I have a somewhat simple UPDATE...WHERE EXISTS... to a table. Oracle (via all other client tools) however immediately (no delay) returns an ORA-03113 which indicates possible connection problems, ...
2
votes
3answers
156 views

How to terminate read() when EOF is not encountered?

I am building a client/server model but using sockets, using named pipes, with mkfifo(). A client writes output into the name pipe, and I read the input in my server using: while ((n = read(fd_in, ...
2
votes
2answers
192 views

When do I stop reading from a file?

Does some_file.good() return false after reading the last entry from the file, or after attempting to read beyond that? That is, should I write while (input.good()) { getline(input, line); // ...
2
votes
3answers
479 views

Detecting EOF in C++ from a file redirected to STDIN

Executing the command: ./program < input.txt with the following code checking: string input; while(cin) { getline(cin, input); } The above code seems to generate an extra getline() call ...
2
votes
4answers
4k views

How do you read scanf until EOF in C?

I have this but once it reaches the supposed EOF it just repeats the loop and scanf again. int main(void) { char words[16]; while(scanf("%15s", words) == 1) printf("%s\n", ...
2
votes
3answers
443 views

Why is this program segfaulting?

I've written a program called Mathtext. This program gives plain text "style" by shifting certain character ranges into Unicode ranges such as 'mathematical letterlike symbols" to produce plain-text ...
2
votes
1answer
2k views

ANTLR no viable alternative at input '<EOF>'

I'm still on the learning path with ANTLR. I've built a grammar and for the most part it does what I expect, but I need it to be able to run silently (no output to stdout or stderr). Grammar ...
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 ...
2
votes
2answers
311 views

Does EOF actually exist?

When I use file functions in PHP, I check for EOF. I wonder if EOF actually exist in a file. When I create an empty text file, it displays 0KB. How does EOF exist in a file with 0KB?
2
votes
1answer
2k views

How to Handle EOFError for raw_input() in python in Mac OS X

My python program has two calls to raw_input() The first raw_input() is to take multiline input from the user. The user can issue Ctrl+D (Ctrl+Z in windows) for the end of input. Second raw_input() ...

1 2 3 4