Tagged Questions
0
votes
2answers
30 views
How can I easily serialize Java graph to/from JSON?
I am struggling to find a library that will serialise a simple graph of Java objects to/from JSON (no need for circular refs or anything). I don't want to have Java class names in the output but ...
0
votes
0answers
18 views
Which one performance better when I use jedis , set(byte[], byte[]) or set(String, String)?
On my laptop, set String directly is always proformace better than set byte[], even with Serialization mechanism when I test with Jedis. I am confused that if String should be serialized when call ...
0
votes
0answers
10 views
Jackson annotation not working with custom date serializer
I read the Jackson's annotations doc but I still can't find how to call a custom serializer from annotations to serialize a java.sql.Date object.
class Test {
java.sql.Date mDate = null;
...
5
votes
2answers
127 views
Serialization - differences between C++ and Java
I've recently been running some benchmarks trying to find the "best" serialization frameworks for C++ and also in Java. The factors that make up "best" for me are
the speed of de/serializing and also ...
1
vote
1answer
22 views
Java Serialization of PrintService Attributes
From my search, I think this is a pretty good summary of my problem. Perhaps, I'm serializing or de-serializing the objects wrong? Or if the serialization is correct, is there a fix/workaround to my ...
0
votes
0answers
22 views
how to handle methods of serialized object which are dependent on transient state
I have two closely related issues with serializing objects. This is part of a major refactor where I'm already 'locked in' to some design behaviors. I'm considering taking previously mutable objects ...
0
votes
0answers
26 views
Java NIO: Object serialization
I'm trying to send a serialized object from a NIO client to a NIO server, but I don't know how to get the serialized object into the ByteBuffer.
Some further questions:
How do I choose the right ...
0
votes
0answers
37 views
Java Serialization to a JSON string using reflection
Ok, so I am just getting into advanced topics like reflection in Java for an OOPrograming class at my university and am finding myself in deep water (for me anyway). We were given an assignment that ...
-2
votes
0answers
34 views
Custom/Manual serialization
Okay, so I have the class seen below, and I have a bit of a problem. I want everything about this class saved to a file. There are a few things that I don't need saved, but nevertheless, I want ...
0
votes
1answer
23 views
Different classes with same serialversion uid
AM having a strange doubt. All I want to know is,
suppose if I have two classes, (100% same structure) in two different locations (packages or projects), and I take care of generating same ...
0
votes
1answer
26 views
Passing objects via EJB RMI - NullPointerException
I haven't been able to find anything useful in days of searching. Maybe I'm just not looking the right place.
Here's the idea - really simple: I want to pass an object from one EJB to another by the ...
0
votes
1answer
21 views
Appengine Java: NotSerializableException
i developed an application in GAE Java, but i'm getting an error only on deployed version, i'm unable to ricreate the condition on local environment.
When i call a servlet i've made, the process ends ...
0
votes
2answers
47 views
sending serialization file via sockets in java
System.out.println("Java is awesome!");
Pardon my enthusiasm; I just can't believe how powerful Java is, what with its ability to not only save objects (and load them), but also with its main ...
0
votes
1answer
24 views
error when writing a ResultScanner to a file in java (serialization issue)
When i want to write a ResultScanner object to disk, i face this error:
Exception in thread "main" java.io.WriteAbortedException: writing aborted; java.io.NotSerializableException: ...
1
vote
2answers
25 views
Extending SQLServerPreparedStatement in java
i'm trying to serialize a prepared statement and store it in a file as object but the object created by my sql driver is of type 'SQLServerPreparedStatement' and is not serializable so i tried to ...
1
vote
3answers
59 views
negative serialVersionUID?
I came across a exception handler class that extends exception as follows:
public class AppFileReaderException extends Exception {
//Explicit serialization UID added
private static final ...
2
votes
8answers
116 views
Is serializable inheritable
Is serializable inheritable. Particulary if I have
class A implements Serializable{}
class B extends A{}
Is class B serializable?
0
votes
1answer
25 views
java.io.NotSerializableException: com.sun.faces.context.FacesContextImpl weblogic
I am using PrimeFaces2.0 in my project ,I found following error once deploy my application on weblogic clustering environment .
Would any body have any idea why it can happen
...
0
votes
1answer
52 views
Copying content of one class to another
I have a map:
Map<String, List<ClassA>> X
Where class A is serializable.
and another map
Map<String, List<ClassB>> Y
Where class B is not serializable.
Content of both ...
2
votes
2answers
30 views
why we have Externalizable when we can override writeObject and readObject in java
As we can override the default serialization process by overriding writeObject() and readObject() , then What is need to Externizable ?
7
votes
2answers
70 views
Java Serialization - Automatically handling changed fields?
UPDATE MAY 20: I should have mentioned that the objects in question do have "serialVersionUID" set (same value in both old & new), but serialization fails before readObject() is called with the ...
2
votes
2answers
42 views
Serialization and objects stored as instance variables
I'm a little confused about serialization.
I have a class, lets call it Container. Variables of the Container class contain ArrayLists of other classes - A,B,C,etc...
If I were to serialize and ...
1
vote
3answers
36 views
Java reading serialized in objects from file into an arrayList
I'm attempting to read a file that contains serialized objects of type Contact into an ArrayList contactsCollection. The issue I'm having is that the objects Contact never get added into the ...
0
votes
1answer
63 views
Write serializable object from Array
I have a little problem with this thing. I tried to make an array where the user enters data, and the data needs to be saved in an object.obj file.
This is my code:
import java.util.*;
public ...
1
vote
3answers
67 views
How do I remove the namespace values from my nested XML child elements?
I have a small RESTful web service powered by Jackson, Jersey, EclipseLink and Tomcat. For the most part, the XML is working as expected except when it comes to my nested child elements. They are ...
0
votes
1answer
61 views
Java ArrayList null pointer exception
EDIT
I've cleaned up the .equals method for string equality and changed the ContactsCollection initialization to:
public static ArrayList<Contact> contactList = new ArrayList<Contact>();
...
-4
votes
2answers
44 views
How to convert a custom object into String in Android?
I have an Object of a custom class. I need to convert it into a String so that I can write it to a file. Is there a way out for this ?
thanks for help.
1
vote
2answers
31 views
XML Serialization and Empty Constructors
I have the following class that allows me to serialize objects in my program:
import java.beans.XMLDecoder;
import java.beans.XMLEncoder;
import java.io.FileInputStream;
import ...
1
vote
1answer
45 views
Deserializing an ArrayList
I am having trouble deserializing an object from a file in Java in a new session.
I can serialize an arraylist to file, and then deserialize it in the same session, however, if I create a new Main ...
0
votes
1answer
19 views
Java unchecked or unsafe operations message
I am getting the following error when compiling a Java class in BlueJ.
AuctionManager.java uses unchecked or unsafe operations.
This error is only displayed when the following deserialization code ...
0
votes
1answer
35 views
Where does SerializeObject.WriteSettings write the file? (path)
I have trouble finding the file on my phone. I want to have a desktop application that can read the file I'm saving with my phone (accelerometer data), and because I'm very new to android development ...
-2
votes
0answers
63 views
Arraylist within class stored in an Arraylist does not become serialized
I have an arraylist stored and in a myclass there is an arraylist and this arraylist with strings is empty and i cant understand why.
Since all the serialize of the outer arraylist works well and i ...
0
votes
0answers
22 views
when spring webflow serialize objects
We have an app based on spring webflow, according to the Spring manual, we need to make every class we put in flowScope serializable. and in our app, basically almost every class need to be ...
0
votes
0answers
46 views
Deep JSON Serialization of JPA Entities
Using jersey-json POJO serialization feature on a jersey service function to return a JPA entity or a List<?> of that entity, how can I "tell" the serializer to dig deeper when serializing?
In ...
-8
votes
1answer
48 views
NotSerializableException: com.google.android.gms.maps.model.LatLng [duplicate]
I am writing a Trip object on file, out.writeObject(pTrip); and getting NotSerializableException, when i searched this problem its about we can not write non-serializable data on file. below is the ...
0
votes
1answer
44 views
ClassCastException ObjectStreamClass cannot be cast to java.lang.String when deserializing
I am trying to serialize, send and receive an instance of the below class ( ServerGameDataObject object = new ServerGameDataObject() )
public class ServerGameDataObject implements Serializable {
...
0
votes
0answers
34 views
Jackson circular reference
I'm doing research into converting Java objects to the JSON format, the main problem is that the objects will contain circular references and annotations or not-done in this project.
I've found that ...
1
vote
1answer
27 views
Gson Custom Serializer Not Called
I have a class that doesn't serialize properly with Gson (class is just name and HashMap) so I wrote a custom serializer to print the name and the key, value pair from the HashMap.
public ...
0
votes
2answers
62 views
XML Serialization with Simple Framework
I am using a framework called Simple, which is very helpful for serializing and deser. xml content. However I am not able to serialize a xml file to an object. The output object should be filled with ...
0
votes
0answers
45 views
make jackson serialize set as list
On my server side I use Hibernate to retrieve data to Set , I don't want to use List on server side.
I'm using @OrderBy annotation, so my sets are ordered on server.
However, when I send my data to ...
-1
votes
3answers
51 views
How to use `transient` members? [closed]
I have a Serialized class with some transient members. I am not sure how to use those members.
public class ClientBeanBase extends BeanBase
{
protected REWSStubClient getServiceStub( boolean ...
1
vote
1answer
30 views
I manage to save, but not to LOAD (Serialization)
I´m making a small game and are now working with serialization. I have managed to save the current state of my battleground object, but I can not seem to load it.
This is my method that´s giving me ...
0
votes
2answers
14 views
Sequentally Channel Write Sends Corrupted Data in Java.NIO
I have a Server that uses non blocking sockets, nio. Server works in a separate thread and there is another thread called Game. Game thread holds the server object and uses server.sendMessage, Server ...
0
votes
0answers
20 views
Unable to deserialize MultiKeyMap using Jackson JSON API
I have the following piece of code that I am using to test Jackson JSON API to serialize and deserialize MultiKeyMap from Apache Collection package -
import ...
1
vote
1answer
39 views
Jackson: Serializing enums as interfaces
(Disclaimer: Extreme oversimplification. The actual scenario is considerably more complex.)
Say I have two systems, Producer and Consumer. Their code is completely independent, aside from a single ...
0
votes
2answers
70 views
Will serialization save the superclass fields? [duplicate]
My subclass implements Serializable, but my superclass does not.
Both subclass and superclass contain variables that need to be saved as part of the state of the subclass.
Will serialization save ...
0
votes
0answers
26 views
xmlRpc java server and php Client
I have and xmlRpc server below:
package org.apache.xmlrpc.demo;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
public class Calculator {
public int add(int i1, int i2) {
...
1
vote
1answer
34 views
Serialization: Importance of serialVersionUID on Networking [duplicate]
In my TCP server-client implementation, all of my packets are derived from an abstract base class that implements Serializable. I am converting the class into bytes and send it through the socket, and ...
1
vote
2answers
59 views
Byte array java xml serialization
I have problem with xml serialization in java. Actually I have to make a xml header to my cryptography program which should look like this:
<EncryptedFileHeader>
<Algorithm>algorithm ...
3
votes
4answers
63 views
Saving objects to a file, and adding more objects to it on a later occasion
I was thinking about making a little project that would help me track my diet. My first obstacle is building a library of food type-objects and writing them to a file.
I followed this guide ...

