The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
19 views

ObjectInputStream Blocking socket external ip madness

When I initialize my objectinputstreams, after I have initialized and flushed by objectoutputstreams, I get this: Client: java.net.SocketTimeoutException: Read timed out at ...
1
vote
1answer
67 views

Filesize excessive Java

I have a problem with these two classes, when the size of the file to send \ receive exceeds 1GB.The class Decripter waits for something, before closing the stream to the output file, which appears to ...
1
vote
1answer
41 views

Android - ObjectInputStream keeps on reading the previous value even with .reset()

I'm building an application for sending files between two Android phones, now i have a ListActivity that retrieves the sdcard and lists the files, when the ListActivity first starts on the two devices ...
0
votes
0answers
30 views

Reset method on objectOutputStream duplicate the message

I'm having a problem with objectOutputStream. I have a client-server program, so the server is also sending a messages to the client.. First, I tried to use flush() but even it sends the correct ...
1
vote
1answer
43 views

Alternative to closing a CipherInputStream

I'm having trouble because I need to close de CIS (or I won't get the last 16 bytes) but I can't because I'm using it over a socket: cis = new CipherInputStream(new ...
0
votes
0answers
35 views

Java client/server socket communication [duplicate]

I wrote this code Random rand = new Random(); int n = rand.nextInt(50) + 1; DataOutputStream dos = new DataOutputStream(_socket.getOutputStream()); ...
0
votes
2answers
40 views

Error while using InputStreamReader with Java

I tried to send an int value from the client to the server. This is the client code that I'm using below: _port = 8071; _socket = new Socket("localhost", _port); Random rand = new Random(); int n ...
1
vote
1answer
43 views

objectinputstream.readobject() line: not available [local variables unavailable]

I have written a client that reads TCP messages using an ObjectInputStream in a separate thread from the main thread. I am using Eclipse and although no exception is thrown in the console, at random ...
0
votes
2answers
31 views

Can I save ImageIcon with ObjectOutputStream?

Does anybody know if you can save an ImageIcon file with ObjectOutputStream? I have a person-registry that I save with an ObjectOutputStream, So it would be really convenient to to write the the ...
0
votes
3answers
49 views

Is it possible to use multiple java ObjetOutputStream objects to write to a single java ObjectInputStream object?

I have a standard client/server setup. The program I'd like to build acts a lot like a mail office(which is my Server). Multiple people (client with ObjectOutputStream) hand the office (server with ...
0
votes
1answer
72 views

How do I switch between String I/O and Object I/O streams in Java?

I'm creating a client-server application wherein the server or client sends strings using PrintStream and reads strings using BufferedReader/InputStreamReader. Eventually, I need to either send an ...
0
votes
2answers
43 views

ObjectOutputStream not saving in custom class

I made my own custom class, and I can't figure out what's wrong with it. More specifically my question is what differences exist between making a class for android instead of Java. I mean, according ...
0
votes
1answer
67 views

How to resolve StreamCorruptedException: invalid stream header in java?

I get this exception while trying to send objects over UDP socket in java java.io.StreamCorruptedException: invalid stream header: 00000000 Here is the code for sender: ` public class ...
0
votes
1answer
115 views

java.io.StreamCorruptedException over sockets

I am developing a multiplayer snake game. The game seems to be running fine except it often(not every time) randomly throws the java.io.StreamCorrupted Exception type code :AC The full StackTrace of ...
2
votes
2answers
65 views

Can't read multiple objects from a file

I'm trying to put the (Lieu) objects into an ArrayList but but at the end of the code, my list is still empty. I've been looking on the net for an answer but all I find is "Write your objects in a ...
0
votes
2answers
69 views

ObjectInputStream and getInputStream

I'm working on a school project and the following codes are an example provided for building the project (should work without any problem but not...). There was no compiling error but when I use ...
0
votes
2answers
71 views

Java streams with EOFException

I wrote some client - server program, that shares data but at server side i got EOFException after reciving data. I tried to fix it on my own but it is hard to find own errors. The error is caused by ...
0
votes
1answer
133 views

ObjectInputStream.readObject() gives EOFException

I'm completely new to programming, so I'm having a difficult time resolving my own errors. Someone advised me to try it on this website, so I thought why not give it a shot. The other posts that I ...
0
votes
1answer
210 views

Exception : java.lang.ClassCastException: [B cannot be cast to java.io.ObjectStreamClass

I made an application which can securely transfer files between systems... All works fine... except at receiving end. it shows an Exception in thread "New Connection" java.lang.ClassCastException: ...
0
votes
2answers
321 views

ObjectInputStream

I'm looking for how to use ObjectInputStream for a university project. I found a lot of things but I don't know why I can't succeed with it. Worst, I have more and more warnings. Here are my three ...
0
votes
2answers
55 views

server thread could not see changed fields of a serialized object

I'm facing with a problem about sending and receiving serialized object via TCP sockets. Actually, i can receive/send an object properly between a server thread and client thread.However, the issue is ...
0
votes
0answers
120 views

GetFieldID: unable to find field Ljava/util/HashMap;.loadFactor:F

My Android app serializes objects (with ObjectOutputStream). Each time I deserialice one (with ObjectInputStream), I get lots of debug messages like this: 01-20 06:44:22.274: D/dalvikvm(2204): ...
2
votes
1answer
84 views

Object sent via ObjectStreams do not keep their field values?

I've been developping a chat client/server to get familiar with java, and I've run into a logic bug I don't understand. I'm sending an object through a ObjectOutputStream (Message object, see ref), ...
2
votes
1answer
137 views

java.io.StreamCorruptedException: invalid stream header: 4C756E69

My apologies if this question has been asked numerous times but after hours of googling/experimentation I have not resolved my problem. I'm trying to send an object (ServerPlayer) from my server ...
0
votes
1answer
56 views

Invalid stream header 434B0005 from client to server

I've serialized some objects so I can convert them to byte arrays for a TCP packet. When I send the objects from the server program to the client program, there are no issues and it works fine. ...
1
vote
1answer
155 views

StreamCorruptedException: invalid type code: 01 in Client Server connection

Firstly, I know there are some questions regarding StreamCorruptedExceptions, but barely any regarding the "Invalid type code: 01". I have a local client connected to a local server. The Client tries ...
0
votes
2answers
62 views

ReadObject Method

anyway to check if method readObject of class ObjectInputStream has finished reading file other than catching its thrown exceptions? and if no. how can I make outNewmast.writeObject(accountRecord); ...
0
votes
1answer
43 views

NoClassDefFoundException when receiving object with readObject()

Here's my setup: My server waits for IPlugin-Objects with an ObjectInputStream. The incoming IPlugin-Object is of an unknown class, so first, the class-file is transmitted and loaded by the ...
2
votes
3answers
134 views

Sending Java object of an unknown class

searching for a long time, but didn't find any answer on that one: I have a server and I have a client. The server should receive an object via ObjectInputStream and ObjectOutputStream. That already ...
0
votes
1answer
116 views

Read data from a client using ObjectInputStream and ObjectOutputStream connected to a client

I have code that is similar to the code below. The problem that I'm having is that when the ObjectInputStream (the input variable) tries to read an object (which will only happen after the connection ...
0
votes
1answer
91 views

Streams - ObjectOutputStream gives NULL

I have two apps that work in conjunction with one another. One is a "server" type app that does not have any GUI interface and handles queries to a database and processes requests from a client. The ...
1
vote
3answers
134 views

ObjectInputStream.read() returning -1, but readObject returns the object [closed]

Am to serialize an object and deserialize the object but I get: 0 for available() -1 for read() EOFException for readByte() public static Element getCacheObject(String key, String cacheName, String ...
-1
votes
1answer
419 views

Communicating with multiple clients - Java Server

I have implemented a small Java chatroom program, where clients can communicate with the server. Although multiple clients won't work - I believe this is because a client reserves a socket while ...
0
votes
1answer
65 views

Appending New Object to the existing file

Hi I have an issue when trying to append new objects to the existing file.. Once the android app has been lunched again I want to get the existing file and add a new objects then read the objects ...
-1
votes
2answers
61 views

Loading From File Error In Java?

I have to implement Object Files for a java project, however I am having trouble when it comes to loading the file (Save is all OK) public static void loadStudentList() { boolean endOfFile = ...
0
votes
1answer
149 views

Java ObjectInputStream (server\client) [closed]

server thread package schatserver; public ServerThread(Socket socket) { this.socket = socket; this.start(); } public void run() { try { ...
0
votes
2answers
244 views

Socket ObjectOutpuStream ObjectInputStream

I'm writing simple client - server application. Everything is ok but when i change InputStream and OutputStream to ObjectOutputStream and ObjectInputStream my application doesn't send the messages. ...
0
votes
1answer
92 views

cannot find symbol ois [closed]

I'm writing simple client - server application but I have stupid problem with this (it simplify example (everything is ok when i don't use java serialization)): ServerSocket serversocket=null; ...
1
vote
1answer
134 views

new ObjectInputStream() blocks

public class SerProg { static ServerSocket ser=null; static Socket cli=null; static ObjectInputStream ins=null; static ObjectOutputStream outs=null; public static void ...
-1
votes
5answers
368 views

Reading Objects until End of File in java

I'm trying to write a program where the user can: 1) Add a person to the contact (name, phone, email), 2) Remove a person from the contacts, 3) Read all from contact. The Way I'm doing this is I'm ...
0
votes
2answers
48 views

Strange input error, I have used this code before

After a very bad attempt at doing my homework, I decided it would be faster to abandon everything and start from scratch. Well not everything ... I copied this part since it worked perfectly so I saw ...
0
votes
2answers
167 views

Java Object Streams and java.io.EOFException

In a fairly simple program I wrote, I am saving an object (a game which contains a few other objects) using ObjectOutputStream. My first question is, when I remove "implements Serializable" from any ...
2
votes
2answers
41 views

Store the actual class logic/blueprint and load it again

If I have a class like this: class Foo implements HasBarMethod { public double bar(double x) { return x*x; } } Now I have Foo foo = new Foo(); ...
1
vote
0answers
475 views

ObjectInputStream - StreamCorruptedException: invalid type code: 00

First off, I know that there are a number of questions on this exact exception, but none of them seem to have good answers. I have a local network of clients communicating with a server over TCP ...
0
votes
1answer
121 views

Java: Trying to read object with objectoutputstream/objectinputstream - crashes

On my server class I am writing a 2D char array out through an ObjectOutputStream and the client reads this with an ObjectInputStream. Afterwards I try to send another 2D array through the same ...
0
votes
0answers
57 views

Java object reusability with objectinputStream

I need to reuse a set of objects and hence I create a pool of them. When I store an object on disk, I no longer need that particular instance of the object and hence I want to make that object space ...
0
votes
1answer
47 views

How to deserialize a Serializable object from AsynchronousSocketChannel

To perform a deserialization, I need an ObjectInputStream. But we just use the AsynchronousSocketChannel, which cannot be converted to an ObjectInputStream. What can I do?
0
votes
1answer
377 views

Java: ObjectInputStream + Socket

I'm creating simple peer to peer game. Currently I'm working on Server/Client(Node) side. I occured strange problem, I can create ObjectOutputStream from socket, but program stops at creation of ...
0
votes
0answers
117 views

ObjectInputStream throwing exception on read

I'm having difficulty with ObjectInputStream. I wrote a simple test which fails on the read with an EOF error. Any input would be greatly appreciated. public class Test { @Test public void ...
0
votes
1answer
184 views

send a serializable object over socket

I have a strange problem to send a serializable object that I have created over socket. In fact if I run the server and the client in the same machine it works well but if the server and the client ...

1 2 3 4