In programming realm, EOF is a sequence of byte (or a chacracter) which indicates that there are no more contents after this.
0
votes
1answer
67 views
$file->eof() always returning false when using PHP's SplFileObject
Why is my PHP script hanging?
$path = tempnam(sys_get_temp_dir(), '').'.txt';
$fileInfo = new \SplFileInfo($path);
$fileObject = $fileInfo->openFile('a');
$fileObject->fwrite("test line\n");
...
0
votes
2answers
99 views
EOF with Nokogiri
I have the following line in a long loop
page = Nokogiri::HTML(open(topic[:url].first)).xpath('//ul[@class = "pages"]//li').first
Sometimes my Ruby application crashes raising the "End of file ...
0
votes
4answers
977 views
Php function loop with file handle
This function is causing big trouble on my server because is in loop:
function loadFiles()
{
$email = $_POST["emailp"];
$file_handle = fopen("/tmpphp/dmbigmail.file", "r");
while ...
2
votes
1answer
91 views
Redefine EOF as character string
I'm trying to write a program that gets a sequence of words, put them into a vector and then does things with them. I've found one way that works, which is:
{
vector<string> inputs;
...
2
votes
2answers
90 views
Creating substrings from text file
I have a text file that contains two lines of numbers, all I want to do is turn each line into a string, then add it into an array (called fields). My problem arrises when trying to find the EOF ...
0
votes
2answers
180 views
Error in ASP SQL
The error says:
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.
I have code that receives an id, which is a number, from another site ...
0
votes
1answer
299 views
PHP - Chunked file copy (via FTP) has missing bytes?
So, I'm writing a chunked file transfer script that is intended to copy files--small and large--to a remote server. It almost works fantastically (and did with a 26 byte file I tested, haha) but when ...
2
votes
1answer
416 views
Java Socket readInt EOFException
I've made a simple socket between my phone (Android) and my server.
The phone is able to connect to the serveur but I can send or read data for eachother.
Here is the code I use for my client (Phone ...
5
votes
1answer
282 views
How to detect end of stream?
I have a DLL which outpus data to a stream. But it adds a postfix and prefix I don't want.
I can create a MemoryStream, let the DLL output the data and then trim it, but there can be a few GB of data, ...
3
votes
2answers
421 views
fgetc, checking EOF
In the book Linux System Programming I have read some like this:
fgetc returns the character read as an unsigned char cast to an int or
EOF on end of file or error. A common error using fgetc ...
0
votes
3answers
110 views
fgetc() doesn't work properly
I have file that goes like 7 4 5 1 etc. I want to put these number in a multi-dimensional array.
for(x=0;x<9;x++)
for(y=0;y<9;y++)
{
current=fgetc(fp);
...
-2
votes
3answers
338 views
java - buffered readed readline() gives null as end of file but no way to use that null
Is there a way to check whether a file was correctly written, I mean if there is an EOF at the end?
I'm asking that because I have a program that takes some file, merge them in a very big file and ...
0
votes
1answer
291 views
Using EOF and getchar() for character counting in C [duplicate]
Possible Duplicate:
Why doesn't getchar() recognise return as EOF in windows console?
I'm new in C and trying to figure out how EOF and getChar() works.
#include <stdio.h>
...
5
votes
3answers
2k views
How to prevent InputStream.readObject() from throwing EOFException?
I serialize an object and save it as a file on my HDD. When I'm reading it, in only some occasions it throws EOFException. After couple of hours debugging I am not able to find a problem.
Here is my ...
0
votes
2answers
91 views
About EOF and Reader/Writer synchronization
Blockquote
how does O.S know that writer is still writing. ?... What is workflow of EOF for file(closing file handle like ^D or ^z) ?
what happens if EOF is never written ?
what happens if ...
0
votes
3answers
389 views
Scala error defining object
I've been trying to get a Scala hello world example running on Eclipse using the Scala plugin. Writing the following:
package scala_test
object Test {
def main(args: Array[String]) {
...
1
vote
1answer
317 views
Python subprocess calling bcp on .csv: 'unexpected eof'
I'm having an EOF issue when trying to bcp a .csv file I generated with Python's csv.writer. I've done lots of googling with no luck, so I turn to you helpful folks on SO
Here's the error message ...
2
votes
4answers
3k views
I'm trying to understand getchar() != EOF
I'm reading The C Programming Language and have understood everything so far.
However when I came across the getchar() and putchar(), I failed to understand what is their use, and more specifically, ...
0
votes
0answers
237 views
JAVA - Least Common Multiple & Greatest Common Divisor [closed]
How can I get the least common multiple and the greatest common divisor of a number inside of a matrix. The problem it's the next:
"There is a square matrix of dimension N. Find the sum of the ...
1
vote
1answer
330 views
Having troubles with EOF on Windows 7
I'm currently learning C with K&R and I'm having a hard time sending EOF simulation through cmd. I was trying Ctrl + Z which did nothing.
In some cases Enter is doing the work and in other cases ...
0
votes
1answer
404 views
EOF in a binary file using python
I've made a code to read a binary file as follows :
file=open('myfile.chn','rb')
i=0
for x in file:
i=i+1
print(x)
file.close()
and the result as follows (a part of it) : ...
2
votes
1answer
104 views
Traversing hex input that could have 0xff in it in C++
I am traversing hex input from stdin in my code, and I noticed that I can't get around my code stopping when a 0xff byte is reached. I know that this happens because loop is :
while( (c=getchar()) != ...
0
votes
1answer
488 views
python subprocess - How to check if there is not any new data in the PIPE?
I have the following example:
import subprocess
p = subprocess.Popen("cmd",stdin = subprocess.PIPE, stdout=subprocess.PIPE )
p.stdin.write(b'cd\\' + b'\r\n')
p.stdin.write(b'dir' + b'\r\n')
...
1
vote
4answers
942 views
Ctrl+Z does not work when trying to exit loop
I am trying to exit a loop with Ctrl+Z, but it does not work. I have looked carefully my code, but I cannot figure out the problem. Your help will be appreciated. I am using Dev-C++. The code is just ...
4
votes
5answers
4k views
How to find out whether a file is at its `eof`?
fp = open("a.txt")
#do many things with fp
c = fp.read()
if c is None:
print 'fp is at the eof'
Besides the above method, any other way to find out whether is fp is already at the eof?
0
votes
2answers
889 views
EOF exception for readObject
i am wondering if there is anyway to check if a ObjectInputStream or ObjectOutputStream is empty or not. i mean, in my program. at first time when it runs, the ObjectInputStream will use its ...
4
votes
2answers
697 views
sscanf & newlines
I need to parse a response from a server like this:
risposta:
200\n
Len 1040\n
Expire 30\n
\n
1111111111111111111111111\n
1111111111111111111111111\n
1111111111111111111111111\n
I'm trying with ...
0
votes
1answer
125 views
PipedInputStream.read() returns -1
How can PipedInputStream.read() return -1 if I had not closed any streams? closedByReader is false, closedByWriter is false, connected is true, but it returns -1; Why it thinks I finished? What is the ...
-1
votes
2answers
105 views
logical error using eof(), begginer level need advice with debugging [duplicate]
Possible Duplicate:
Reading from text file until EOF repeats last line
The goal is to find the mass of a molecule given input file with lines
(line1) 3 // molecule has two types of atoms
...
0
votes
2answers
436 views
When my program reads CTRL-D from standard input on Linux, why does it not convert to EOF?
Below is the program that I wrote.
/*******************************************************************************
* This program reads EOF from standard input stream to store in an integer
* ...
7
votes
3answers
4k views
PyCharm. /usr/bin/python^M: bad interpreter
Cannot figure out, where to change EOF in PyCharm.
My scripts, started with:
#!/usr/bin/python
# -*- coding: utf-8 -*-
Outputs something like this, when I try to run it like executable (chmode +x):
...
0
votes
1answer
252 views
C++ Continue Reading File After eof()?
I am building a program which reads text files, containing a list of numbers. These lists contain a series of sorted numbers, each which may contain a varying amount of values. For example, file 1 may ...
3
votes
2answers
921 views
Using Free Pascal\Lazarus to parse a large binary file for specific values
I need to parse a RAM dump for MFT records (from the NTFS filesystem).
I've done some programming in the past with regard to reading headers of multiple files (using FileSearcher class, etc.), but ...
0
votes
1answer
233 views
try run to `eof script batch file` (.bat)
I have scrip contain command line:
set dir=%1
cd %dir%
test.bat
echo successful
When run this script, file test.bat (this file run phpunit) run complete then this script don't run command line ...
0
votes
5answers
316 views
Common misconception : Files have an EOF char at their end
I was reading "PC assembly language by Carter" and I saw this phrase in footnote of page 32 which made me so confused !
If we assume that files may have not EOF at their end (as the book says) is a ...
1
vote
1answer
1k views
Java, StaX simple code but get parse error, premature end of file
I'm trying to figure out IO using StaX, but I keep getting "malformed" and "premature EOF" errors from the reader. This is reading code created using StaX, as in the following example.
I've boiled ...
1
vote
1answer
323 views
Expecting NEWLINE in ANTLR
i'm having an error showing :
line 1:5 mismatched input '<EOF>' expecting NEWLINE
for my input :
print "hi"
I'm basically new to ANTLR so I really don't have any idea on what this error is ...
1
vote
1answer
107 views
IO File code is being inconsistent
The output from my function is being inconsistent. The function is suppose to open a file then extract integers from the file and then set the integers into an array. I am having problems extracting ...
0
votes
1answer
624 views
C++ - Ifstream - Reset EOF bite
I'm working with C++ ifstream. I read until EOF bit is set (I need this way).
Why then don't work this:
//IN is ifstream file. CH is char.
if(IN.eof()){
IN.seekg(ios::beg); IN.clear();
...
-1
votes
1answer
132 views
Load Json data with php giving an error
I am using this code to try to get json data from many json files using yql to compile them into one json.
My yql query is in this format:
select * from json where
...
2
votes
1answer
846 views
Send a EOF in a pipe without closing it
I am writing an app which uses GnuPlot for ploting data.
Instead of using text format to comunicate both programs though a pipe (it is slow because of the vprintf() and the big amount of data being ...
2
votes
1answer
445 views
Automatically extend file size when seeking / writing to a location on a read/write fstream
I'm working on some legacy code that uses win32 WriteFile() to write to a random location in a binary file. The offset of the write can be past the end of the file in which case WriteFile() seems to ...
3
votes
1answer
571 views
Linux C how to get a !eof event? [closed]
i want to watch a file fd is readable when not eof in linux c.
now i have to loop until !eof,i think it's waste of cpu time.
static int rs_eof_read_binlog(rs_master_info_t *m, void *buf,
size_t ...
-1
votes
1answer
128 views
How to handle weird EOF
I am reading a file using this
while ((line = f1.ReadLine()) != null)
however my program can't handle the last line which always have this in debugger "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0....on and ...
2
votes
1answer
569 views
Linux NASM detect EOF
I'm trying to learn the basics asm on linux and I can't find a very good reference. The NASM docs seem to assume you already know masm... I found no examples in the documentation of the cmp (outside ...
0
votes
3answers
167 views
C++ EOF on cout<<char(int) casting
Here is my code:
#include <cstdlib>
#include <iostream>
#include <cstring>
using namespace std;
int main(int argc, char *argv[])
{
int duze[26];
int male[26];
int n;
...
0
votes
4answers
122 views
getc(fp) causing trouble
Here is my code.
#include<stdlib.h>
#include<stdio.h>
int main(int argc,char** argv)
{
char a;
a=9;
FILE * fp;
fp=fopen(argv[1],"r");
while(a!= EOF)
{
...
1
vote
1answer
542 views
bash EOF in if statement
I am trying to do an action in a IF ELSE statement in Bash, but receive an error like this one:
Syntax error: end of file unexpected (expecting "fi")
Now I am quite new to this, so probably the ...
5
votes
1answer
479 views
go websockets eof
I'm trying to make a simple command forwarder to connect my home computer to a server I own, so that I can push commands to my server and my home pc gets it. Those commands are simple pause/resume for ...
1
vote
2answers
254 views
unable to read the EOF character in C
I have a problem with reading the EOF character for the last input in C
j=0;
while(*(name2+j)!='\n'){
if(*(name2+j) == ' '){
j++;
continue;
}
...

