Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
478 views

Is Java's EOFException exceptional?

It seems dirty to use an exception to indicate the end of a file has been reached. Every file we read has an end, so it doesn't seem exceptional or unexpected. Furthermore, I don't like using an ...
3
votes
4answers
6k views

When will an EOFException occur in JAVA's streams

I am working with a DataInputStream and had a question about EOFExceptions. According to java docs: Signals that an end of file or end of stream has been reached unexpectedly during input. ...
2
votes
2answers
371 views

EOFException in my Java Code

As other posts here at stackoverflow has already explained, the EOFException occurs when the end of the stream is reached unexpectedly. I have a method, which converts a byte array into a long number. ...
2
votes
1answer
7k views

java.io.EOFException while writing and reading froma servlet

I have the following code on the applet side: URL servlet = new URL(appletCodeBase, "FormsServlet?form=requestRoom"); URLConnection con = servlet.openConnection(); con.setDoOutput(true); ...
1
vote
4answers
105 views

EOFException in Java Android? Help needed

I am trying to do some kind of serialization where I can directly read and write objects from file. To start of I just tried to write a character to file and tried to read it. This keeps giving me ...
1
vote
1answer
207 views

Getting “java.io.EOFException” after sending a file throught socket

I'm trying to implement basic communication through sockets, what I have now is: server start's to listen on socket, this.serverSocket_ = new ServerSocket(this.serverPort_); clientSocket = ...
1
vote
3answers
97 views

java client server serialization problem

hi i am working on a client server programme with containing some special functions like sending private message, show online list etc. so i know i must use serialization and first i managed it but ...
1
vote
1answer
57 views

Java - IzPack and EOFException

I have one installer with several packs. None is required. When I mark all, the installation completes with success. When I mark just two packs, I get EOFException. [edit] Using trace I can see the ...
1
vote
2answers
198 views

EOFException when sending data from Applet to a servlet

I am trying to get simple user Details (Name,Phone No, Gender(Option Box)) in an Applet and display the details in an JSP.I put all the three details in an HashMap and send it in a output Stream. The ...
1
vote
1answer
118 views

Java: EOFException in networking

I am new to networking and I am getting an EOFException when I am trying to run the MyClient.java. MyServer.java public class MyServer { public static void main(String[] args) { ...
1
vote
1answer
2k views

Hbase 0.20.6 Can not start master exception

I'm using Hbase 0.20.6 with Hadoop 0.21.0 on Ubuntu 10.04 LTS and I got can't start master error. (The error is attached at the end of the post from the hbase-root-master-ubuntu.log file) Does Hbase ...
1
vote
2answers
352 views

EOFException thrown by a Hadoop pipes program

First of all, I am a newbie of Hadoop. I have a small Hadoop pipes program that throws java.io.EOFException. The program takes as input a small text file and uses hadoop.pipes.java.recordreader and ...
1
vote
1answer
2k views

EOFexception in Java when reading objectinputstream

I want to read multiple objects (my own class Term) that I have output to a .dat file, but I always get a nullPointException or EOFException. ObjectInputStream inputStream = new ObjectInputStream(new ...
0
votes
1answer
97 views

Hadoop + Hbase compatibility issues

I searched a lot about the following issue that am facing: java.io.IOException: Call to /10.0.1.37:50070 failed on local exception: java.io.EOFException at ...
0
votes
2answers
77 views

Unable to send Object through ObjectInputStream in Java

I am writing an app that makes use of Object Output and Input Streams. However I have a problem, because I am not able to send my object properly. I write it to stream, and server gives me a class not ...
0
votes
0answers
215 views

MySQL Communications link failure due to underlying exception

I am facing such annoying problem, running on Tomcat 6 and MySQL using TomcatJDBC Lib. com.mysql.jdbc.CommunicationsException: Communications link failure due to underlying exception: ** BEGIN ...
0
votes
2answers
94 views

Receive EOFException after the first SocketTimeoutException

This is a simple TCP Server (echo) and TCP Client in Java. If I comment the following line, the program is working: st.setSoTimeout(WAITING_FOR_INPUT); But if I use this socket timeout method, ...
0
votes
2answers
273 views

EOFException when readObject in an android app

I use serialization to save data in my android app. Everything works beautifully until a user report he can not open his file. After examined the file he sent to me, it turned out the problem is an ...
0
votes
1answer
1k views

Writing to Avro Data file

The following code simply writes data into avro format and reads and displays the same from the avro file written too. I was just trying out the example in the Hadoop definitive guide book. I was able ...
0
votes
3answers
2k views

Java Mysterious EOF exception with readObject

public static Info readInfoDataFromFile(Context context) { Info InfoData = null; FileInputStream fis = null; ObjectInputStream ois = null; Object object = null; ...
0
votes
1answer
365 views

Weird EOF Exception while trying to download file from GWT application

I am trying to download a file from GWT client. At server side there is a servlet which generates content of file as per request and send it back to the client. Test Scenarios: Scenario 1 If I ...
0
votes
3answers
415 views

Get EOFException while reading serialized object in Java

I have two methods, one that serialize the Object... and it works ok: public void record()throws RecordingException { ObjectOutputStream outputStream = null; try { ...
0
votes
2answers
636 views

EOFException in ObjectInputStream Only happens with Webstart not by java(w).exe?

Anyone familiar with the differences in starting with Webstart(javaws.exe) compared to starting the app. using java.exe or javaw.exe regarding streams ? This is the exception which i ONLY get when ...
0
votes
1answer
1k views

Getting EOFException while trying to read from SSLSocket

I am developing a SSL client that will do a simple request to a SSL server and wait for the response. The SSL handshake and the writing goes OK but I can't READ data from the socket. I turned on the ...
0
votes
2answers
108 views

java - IO on internal class

Is it possible to ObjectOutputStream/ObjectInputStream an internal class? I can write it OK, and examine the created file, but when I try to read it back in using ObjectInputStream, I get an ...