Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
5answers
5k views

Appending to an ObjectOutputStream

Is it not possible to append to an ObjectOutputStream? I am trying to append to a list of objects. Following snippet is a function that is called whenever a job is finished. FileOutputStream fos = ...
7
votes
6answers
11k views

Load files bigger than 1M from assets folder

I'm going crazy, I created a file object, so it can be read with ObjectInputStream, and I placed the assets folder. The method works with a file smaller than 1M, and give error with larger files. I ...
7
votes
5answers
1k views

Performance issue using Javas Object streams with Sockets

I'm trying to do local IPC using Sockets and Object streams in Java however I'm seeing poor performance. I am testing the ping time of sending an object via an ObjectOutputStream to receiving a reply ...
4
votes
3answers
433 views

How can I append to an existing java.io.ObjectStream?

As for now I will get java.io.StreamCorruptedException when I try to append an Object. I have searched the Internet for a way to overcome that. The answer I found so far is it can't be done. A way ...
3
votes
2answers
158 views

Java SocketServer with multiple clients - StreamCorruptException

The Application I'm writing a client/server application in Java, that communicates by sending objects over sockets using the ObjectStream classes. Each node in the application looks approximately ...
3
votes
2answers
140 views

Java reading different variables with ObjectInputStream

I have an ObjectInputStream which needs to read two different inputs which are a String and my own created object. I have a thread which constantly waits for an input and depending on the input be it ...
3
votes
2answers
570 views

ObjectInputStream happy with FileInputStream, not happy with getResourceAsStream

I have some pretty standard code which takes in a serialized object from a stream, which bascially looks like this: Object getObjectFromStream(InputStream is) { ObjectInputStream ois = new ...
3
votes
5answers
3k views

Java FileInputStream ObjectInputStream reaches end of file EOF

I am trying to read the number of line in a binary file using readObject, but I get IOException EOF. Am I doing this the right way? FileInputStream istream = new FileInputStream(fileName); ...
3
votes
3answers
2k views

ObjectInputStream Error

I am using ObjectOutputStream to create a file of serialized objects. I then use an ObjectInputStream to with the readObject() method to get the objects back out of the file. It works great the ...
2
votes
3answers
139 views

Is it good practice - using EOF exception to detect End of File

I am reading from a ObjectInputStream and I do not know number of objects beforehand. So using the EOF exception catch block to detect that END of file has been reached and close the file. Is it a ...
2
votes
3answers
135 views

(java) ObjectInputStream deserializing wrong version of object

I'm just learning networking from a java book, so I'm a bit of a noob. I couldn't find this problem in the book or online so I decided to ask the internet. The book says to use the ObjectOutputStream ...
2
votes
2answers
298 views

I'm having troubles with Java sockets in a client/server type application when having to accept many connections

First of all, thanks for reading. This is my first time in stackoverflow as user, although I've always read it and found useful solutions :D. By the way, sorry if I'm not clear enough explaining ...
2
votes
2answers
800 views

Cannot create ObjectInputStream with InputStream for a Bluetooth Socket on the Android Platform

I am writing a multiplayer game for Android phones. Communication is via Bluetooth. I have managed to send bytes from one phone to the other using the input / output stream. Since I need to be able to ...
2
votes
3answers
131 views

Upgrading a Java Serializable class

I have read various blogs about Serialization and the use of serialVersionUID. Most of them mention using it to maintain the state of a serializable class. The scenario I have is; I know the old ...
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
1answer
39 views

Object output and input issues, only prints the first line on the input

I'm making a chat server for a class and am having issue logging messages for offline users. The data appends to the logfile as an object, it grows in size as you log more. When I login as the user ...
1
vote
1answer
139 views

Creating a client-server chat program

In a server client chat program using object streams how would i be able to send a message to all clients and a private msg to certain clients? in my listening for connections method i accept the ...
1
vote
1answer
197 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
1answer
61 views

Java ObjectInputStream hanging

I am feeling really stupid right now guys.... basically I am connecting over TCP on a local machine... and when I try to make the In/out streams at the client it wont get passed creating the object ...
1
vote
2answers
227 views

android/java: use something else rather then ObjectInputStream to load an object

I have a bunch of objects stored in several files that I need to load into memory at the start of my app, this is how I do it: FileInputStream fis = null; ObjectInputStream ois = null; ...
1
vote
1answer
274 views

ObjectInputStream read Array

I am trying to read in an array from ObjectInputStream in Java. I can find no documentation on how to do this. I assume that it is readObject(), but this doesn't seem to work. out.write(Object) ...
1
vote
1answer
266 views

Equivalent of BufferedReader.readNext() for ObjectInputStream in Java

I have a Server communicating with multiple clients through a socket connection. In my original program, messages were sent and recieved using a PrintWriter and a BufferedReader. When I checked to see ...
1
vote
2answers
296 views

stop thread that does not get interrupted

I have a thread that sits and reads objects off of an ObjectInputStream: public void run() { try { ois = new ObjectInputStream(clientSocket.getInputStream()); Object o; ...
1
vote
2answers
16k views

java.net.SocketTimeoutException: Read timed out

I have an application with client server architecture. The client use Java Web Start with Java Swing / AWT and the sert uses HTTP server / Servlet with Tomcat. The communication is made from the ...
1
vote
5answers
4k views

Java Socket Programming

I am building a simple client/server application using java sockets and experimenting with the ObjectOutputStream etc. I have been following the tutorial at this url ...
0
votes
1answer
56 views

Store a Map object inside another Map

I have for instance this Map: Map<String, Integer> map = new HashMap<String,Integer>(); than I put some values: map.put("a", 2); map.put("b", 3); Than I have this class to serialize ...
0
votes
0answers
44 views

what causes : java.net.SocketException: Connection timed out, Not the SocketTimeoutException

This SocketException is thrown in ObjectInputStream.readObject() method, what cause this excetpion? Besides, the values of soTimeout of client and server socket are both 0, and KeepAlive value is ...
0
votes
1answer
72 views

ObjectInputStream.readObject() hangs forever during the process of socket communication

I have encountered a problem of socket communication on linux system, the communication process is like below: client send a message to ask the server to do a compute task, and wait for the result ...
0
votes
4answers
51 views

How do I replace an existing Singleton object with one from a saved file using ObjectInputStream?

I'm making a Java application that has basic Saving / Opening capabilities. All I need to save is the instance of my class ModeleImage which is a Singleton. My saving apparently works and looks like ...
0
votes
0answers
74 views

Java - Reading Object from File(.dat)?

if(str.compareTo("patient") == 0){ try{ ois = new ObjectInputStream(new FileInputStream(patientFile)); }catch(FileNotFoundException e){ System.out.print("File ...
0
votes
1answer
214 views

java.io.StreamCorruptedException: invalid type code: 02

I am trying to send files of a simple HTML picture gallery. I can send html files and thumbnails of pictures with no problem. But when I start sending pictures, while sending picture 5 I am getting ...
0
votes
2answers
75 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
1answer
85 views

getInputStream blocks?

Using Input/Output stream to pass objects between my client and server. I can both send and receive objects with my server, and and now i want the same for the client which as of now only can send. ...
0
votes
1answer
59 views

Java: client-sever app.- WHILE on ObjectInputStream read thread

This must be very easy but I am obviously missing some basic understanding. I have simple client server application server: public class GameServer{ private Socket clientSocket; private ...
0
votes
1answer
42 views

Saving my Serialized Class that have not serialized objects like Rect

I'm trying to save my Serialized object when the activity calls the onDestroy() but when i try to write my object using ObjectOutputStream a java.io.NotSerializableExeption is thrown. Can you please ...
0
votes
2answers
93 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
1answer
244 views

Java - Listening to a socket with ObjectInputStream

Ok so , i have a thread class called 'Client' every time the server accepts a connection it creates a new Client....The run method listens for messages from the client and i am useing ...
0
votes
2answers
94 views

Better solutions for checking if data is in stream using Java stream functions?

I have an application that needs too read hundreds of socket communications. I am using a ThreadPool, with a upper limit on the number of threads, to service these sockets. This causes blocking on ...
0
votes
3answers
186 views

Java ObjectInputStream hangs on second client instance

FOUND SOLUTION (consider this closed and answered since I can't answer my own question before 7 hours). I had left an unnecessary Socket instanciation and it made the clien apps hang. Sorry for ...
0
votes
2answers
122 views

working of ObjectInputStream

I've got multiple objects stored in a file .This is regarding the ObjectInputStream. If I've got the below code: FileInputStream fis = new FileInputStream(filename); ObjectInputStream ois = new ...
0
votes
2answers
267 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
3answers
402 views

Exception.getCause() returning null when trying to find the source of an exception

why does System.out.println(e.getCause()); gives null? And can store whole hash-set collection like this? private void saving() throws IOException, ClassNotFoundException { ...
0
votes
0answers
290 views

StreamCorruptedException invalid type code: AC

I'm building a chatbox for a school project and I've come across this error I can't seem to fix. It's my first networkp app, so it's a lot of trial and error, but up until now I've been able to fix ...
0
votes
4answers
117 views

is it possible to access objects randomly in java?

basically I have a file of String Objects. I used Java ObjectOutputStream to store the objects. Is it possible to access the objects(Strings) randomly, say if I want to access the 11th object, I could ...
0
votes
0answers
89 views

android object casting

I have an int[] object stored in a file, the size of the file is around 1M, so I assume that object is around that range. Anyway, I can read the object back into memory from the file using ...
0
votes
0answers
349 views

inputObjectStream.readObject throws java.io.EOFException at java.io.ObjectInputStream$BlockDataInputStream.peekByte(ObjectInputStream.java:2570)

Strange behavior. When I run a piece of logic in a Android Activity it works fine. But when I try to run that off a ActivityInstrumentationTestCase2 project, using a thread to readObject on the server ...
0
votes
3answers
74 views

Does really matter the size of the objects you send through a Socket with object input/output streams?

Is it more efficient to flush the OutputStream after each individual invocation of ObjectOutputStream#writeObject rather than flushing the stream after a sequence of object writes? (Example: write ...
0
votes
2answers
259 views

Getting Progress of ObjectOutputStream/ObjectInputStream

I recently figured out how to use ObjectOutputStream and ObjectInputStream to send objects over a simple Java socket connection between a server and a client. I was wondering if I wanted to transfer ...
0
votes
1answer
344 views

Java: Delete specific data using ObjectOutputStream

I am currently trying to write a program to store data about people into a .dat file. The program must be able to add entries, display entries, and delete entries (all of which are an object of the ...
0
votes
2answers
296 views

java initializing variable for stream in/out

hi i have a problem with this code... it s not clear how i can initialize the variables of in/out during the creation of this object the program hangs when in the constructor it is at the line ...

1 2