Tagged Questions
The objectoutputstream tag has no wiki summary.
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
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
862 views
Sending the same but modifed object over ObjectOutputStream
I have the following code that shows either a bug or a misunderstanding on my part.
I sent the same list, but modified over an ObjectOutputStream. Once as [0] and other as [1]. But when I read it, ...
3
votes
2answers
161 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
1answer
2k views
Android Socket + ObjectOutputStream not working correctly
Hey guys. I am developing a client/server program where the client is an android device.
The server has a listener class that reads an object from the input stream. I created a client software for ...
3
votes
4answers
670 views
How to override ObjectOutputStream.writeStreamHeader()?
The method ObjectOutputStream.writeStreamHeader() can be overridden to prepend or append data to the header. However, if that data is based on an argument passed to the derived class's constructor ...
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
1answer
59 views
Can't verify signature after reading signed file
sign.verify(signature) returns false in the verifySignature method; and I think it has something to do about how I use outputstreams and inputstreams with the signedobject.obj file (certificate passed ...
2
votes
4answers
216 views
Reading Objects from Random Access File
I wrote a file using Java's FileChannel class that uses RandomAccessFiles. I wrote objects at various locations in the file. The objects were of variable sizes but all of the same class. I wrote the ...
2
votes
1answer
170 views
How to send a string array using sockets and objectoutputstream
I have this to send string or integer but if i want to send a string array what should i use?
// A string ("Hello, World").
out.write("Hello, World".getBytes());
// An integer (123).
...
2
votes
1answer
130 views
Error with serializable class
I have a java server that sends some data through a socket to a client developed in android.
The data that sent is serialized...and at the client side when trying to read from the ObjectInputStream I ...
2
votes
2answers
300 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
809 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
857 views
Java ObjectOutputStream on Socket not flush()ing
I'm working on a network app written in Java, using ObjectOutputStream and ObjectInputStream on top of Sockets to exchange messages. My code looks like this:
Sender:
ObjectOutputStream out;
...
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);
...
2
votes
4answers
2k views
writing a BitSet to a file in java
I have a BitSet and want to write it to a file- I came across a solution to use a ObjectOutputStream using the writeObject method.
I looked at the ObjectOutputStream in the java API and saw that you ...
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
204 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
58 views
Can't Cast a POJO after ObjectOutputStream
I have a program that sends POJO from a server to a client. For primitive data types like String[] or Boolean it works fine. When I create a custom data type with just getters and setters, send it ...
1
vote
2answers
480 views
ObjectOutputStream and java.io.StreamCorruptedException
When I try to send a customobject (See Content.java) from my client to the server with ObjectOutputStream, I get StreamCorruptedException after the first object is sent. So if I try to send another ...
1
vote
3answers
480 views
What character encoding does ObjectOutputStream 's writeObject method use?
I read that Java uses UTF-16 encoding internally. i.e. I understand that if I have like: String var = "जनमत"; then the "जनमत" will be encoded in UTF-16 internally. So, If I dump this variable to some ...
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
3answers
1k views
create object output stream from an object
I want to create on ObjectOutputStream, but I don't want to persist the object in a file, so how to do that? All the tutorials(that I found) say only about the file way:
FileOutputStream fos ...
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 ...
1
vote
5answers
938 views
Java: Use ObjectOutputStream without serializable
Sometimes, I want to use an ObjectOutputStream to write something to a file or sending a little image over the network. But BufferedImage and many other classes not implement java.io.Serializable and ...
1
vote
2answers
2k views
OutputStream delete file contents JAVA
I have files in who i need to record serialized object. I open ObjectOutputStream for writing in files. If i didnt wrote nothing in file, file content get deleted. I don't want content to be deleted ...
1
vote
3answers
486 views
NullReferenceException when sending XMLWrite output to httpContext.Response.OutputStream
I have an application where every now and then I'm getting a strange error.
This is the piece of code:
Dim XMLWriter As New System.Xml.XmlTextWriter(Me.Context.Response.OutputStream, ...
0
votes
1answer
61 views
Java serialization. Field changes value
I have the following problem. I can set the transaction state to be either "start, end or ongoing". I set this, then serialise my Transaction object over to the server, who retrieves it. Works like a ...
0
votes
1answer
73 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
2answers
39 views
Android and ObjectOutputStream to resource file
I'm really new to android development, and my first project was a simple game wich has a display and a logic part. I would like to add a save feature to the game, but i'm having trouble with the ...
0
votes
2answers
112 views
Why does ObjectOutputStream.writeObject() throw IOException?
I'm currently working on an Android app that automatically changes the phones state based on a certain event, such as battery level. I have a Profile class which has 3 main parameters, names, Event ...
0
votes
1answer
57 views
Sending images ObjectOutputStream
Ive come across something i cant come up with a descent solution for. I send some string[] messages from a server to a client, but now i want to send images aswell. Problem is that i check for objects ...
0
votes
1answer
45 views
Java ObjectOutputStream and updating a file
I am having trouble figuring out one implementation problem, I have one class, it behaves like list but instead of holding a file in some collection it saves them on a disk.
The problem occurs when ...
0
votes
1answer
221 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
42 views
why won't “toByteArray()” execute?
I've been trying to figure this out for hours and it's soo frustrating!
I am serializing a 'hashtable', which is the object that I am passing to this method
'saveDataToDisk(Object o)', I tested this ...
0
votes
2answers
76 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
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
112 views
NotSerializableException when sending an serilizable object over socket?
Im trying to send a custom-made object over a socket connection. The class implements serilizable but the constructor still throws a NotSerializableException when im trying to write the object to the ...
0
votes
3answers
346 views
Appending to ObjectOutputStream (writing multiple objects w/o closing stream)
Desclaimer My question is different from two following links
Question 1
Question 2
public class AppendableObjectOutputStream extends ObjectOutputStream {
public ...
0
votes
1answer
128 views
Reset ObjectOutPutStream to update new object state?
I want to reset ObjectOutPutStream to update the new object state. But why it doesn't effect. The below code outputs "BEFORE" instead of "AFTER"? What's wrong with my code?
package test;
import ...
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
1answer
60 views
properly printing out integers from 2 parts
I have a uint128_t class that stores its values as uint64_t UPPER, LOWER;, and im not sure how to overload the operator<< so that when i pass in std::cout, the value will print in decimal ...
0
votes
1answer
44 views
keep getting an ionotseriaizableexception, what did i do wrong?
So, i have a class which has the following attributes
private String name;
private int counter;
private DateFormat df;
private DecimalFormat def;
private ArrayList<Bike> bike;
static String[] ...
0
votes
1answer
86 views
java: keep tracking of file size on the run?
I wrote a code that writes compressed objects into a file, My questions is: is there a way that I could keep track of the increment of size of my file as the object being wrote in? here is my code:
...
0
votes
1answer
541 views
JSONObject Not Serializable?
I am trying to serialize an ArrayList of JSONObjects. But I get the error:
05-07 01:04:24.130: WARN/System.err(913): java.io.NotSerializableException: org.json.JSONObject
05-07 01:04:24.130: ...
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
3answers
117 views
How can I make sure my server reads what the client has written?
I am writing a byte array from a socket client as:
byte[] arr = { 49, 49, 49, 49, 49};
InetAddress address = InetAddress.getByName(host);
connection = new Socket(address, port);
out = new ...
0
votes
1answer
310 views
Send Java File object to a Server over Sockets
Hello I am trying to send a Java File Object over a socket to a server which will then store it in a database. Currently I have created a FileBean which stores the File object in it. I then use an ...
0
votes
2answers
260 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 ...