Tagged Questions

34
votes
9answers
21k views

XML serialization in Java?

Is there a (preferably free) Java analogue of .NET's XML serialization?
26
votes
6answers
19k views

What is the difference between Serializable and Externalizable in Java?

What is the difference between Serializable and Externalizable in Java?
25
votes
12answers
3k views

Simple way to do Xml in Java

Is there is Simple way to read and write Xml in Java? I've used a SAX parser before but I remember it being unintuitive, I've looked at a couple of tutorials for JAXB and it just looks complicated. ...
25
votes
11answers
7k views

Use the serialVersionUID or suppress warnings?

first thing to note is the serialVersionUID of a class implementing Interface Serializable is not in question. What if we create a class that for example extends HttpServlet? It also should have a ...
22
votes
9answers
3k views

GUI tool to browse Java serialized objects

Is there a GUI application that can open serialized Java object files (both binary and XML format) and display them in browsable fashion (maybe like the Eclipse debugger displays the state of ...
21
votes
2answers
3k views

Should an abstract class have a serialVersionUID

In java, if a class implements Serializable but is abstract, should it have a serialVersionUID long declared, or do the subclasses only require that? In this case it is indeed the intention that all ...
20
votes
7answers
8k views

Why generate long serialVersionUID instead of a simple 1L?

When class implements Serializable in Eclipse, I have two options: add default serialVersionUID(1L) or generated serialVersionUID(3567653491060394677L). I think that first one is cooler, but many ...
18
votes
6answers
40k views

Convert a JSON string to object in Java?

Is there a way in Java/J2ME to convert a string, such as: {name:"MyNode", width:200, height:100} to an internal Object representation of the same, in one line of code? Because the current method ...
18
votes
8answers
15k views

How do I add a type to GWT's Serialization Policy whitelist?

GWT's serializer has limited java.io.Serializable support, but for security reasons there is a whitelist of types it supports. The documentation I've found, for example this FAQ entry, says that any ...
17
votes
2answers
439 views

Simple, hassle-free, zero-boilerplate serialization in Scala/Java similar to Python's Pickle?

Is there a simple, hassle-free approach to serialization in Scala/Java that's similar to Python's pickle? Pickle is a dead-simple solution that's reasonably efficient in space and time (i.e. not ...
15
votes
4answers
2k views

Are there C++ equivalents for the Protocol Buffers delimited I/O functions in Java?

I'm trying to read / write multiple Protocol Buffers messages from files, in both C++ and Java. Google suggests writing length prefixes before the messages, but there's no way to do that by default ...
15
votes
6answers
14k views

High performance serialization: Java vs Google Protocol Buffers vs …?

For some caching I'm thinking of doing for an upcoming project, I've been thinking about Java serialization. Namely, should it be used? Now I've previously written custom serialization and ...
15
votes
9answers
7k views

Why Java needs Serializable interface?

We work heavily with serialization and having to specify Serializable tag on every object we use is kind of a burden. Especially when it's a 3rd-party class that we can't really change. The question ...
15
votes
8answers
3k views

Is java object serialization compatible between 1.5 and 1.6

I am wondering whether it is safe to mix jdk 1.5 and 1.6 (Java 6) object serialization (biderctional communication). I searched for an explicit statement from sun concerning this question but did not ...
15
votes
12answers
18k views

How to serialize an object into a string

I am able to serialize an object into a file and then restore it again as is shown in the next code snippet. I would like to serialize the object into a string and store into a database instead. Can ...
14
votes
2answers
1k views

Does it matter what I choose for serialVersionUID when extending Serializable classes in Java?

I'm extending a class (ArrayBlockingQueue) that implements the Serializable interface. Sun's documentation (and my IDE) advises me that I should set this value in order to prevent mischief: ...
13
votes
9answers
6k views

Should a Log4J logger be declared as transient?

I am using Java 1.4 with Log4J. Some of my code involves serializing and deserializing value objects (POJOs). Each of my POJOs declares a logger with private final Logger log = ...
13
votes
4answers
47k views

How do you convert binary data to Strings and back in Java?

I have binary data in a file that I can read into a byte array and process with no problem. Now I need to send parts of the data over a network connection as elements in an XML document. My problem ...
12
votes
1answer
184 views

Which guarantees do Scala's singletons have regarding serialization?

Is it safe by default, like Java's single-element-enum pattern or is it e. g. necessary to define readResolve or similar methods somewhere to prevent accidental or malicious breakage of the singleton ...
12
votes
3answers
1k views

final transient fields and serialization

Is it possible to have final transient fields that are set to any non-default value after serialization in Java? My usecase is a cache variable — that's why it is transient. I also have a habit of ...
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 = ...
12
votes
6answers
1k views

explicit serialVersionUID considered harmful?

I am probably risking some downvotes on this. It seems to me that explicitly specifying serialVersionUID for new classes is bad. Consider the two cases of not changing it when layout has it should ...
12
votes
14answers
3k views

Homemade vs. Java Serialization

I have a certain POJO which needs to be persisted on a database, current design specifies its field as a single string column, and adding additional fields to the table is not an option. Meaning, the ...
12
votes
9answers
5k views

Which is the best alternative for Java Serialization?

I'm currently working on a project which needs to persist any kind of objects (of which implementation we don't have any control) so these objects could be recovered afterwards. We can't implement a ...
11
votes
3answers
404 views

How could an idiomatic design of Serializable/Cloneable/… look like in Scala?

I wonder how much different these funcionality would look like (and how different the implementation would be), if Scala wouldn't (have to) follow Java's java.io.Serializable/java.lang.Cloneable ...
11
votes
7answers
430 views

Is it possible in java to create 'blank' instance of class without no-arg constructor using reflection?

I have a class which has not default constructor. And I need a way to get 'blank' instance of this class. 'blank' means that after instantiation all class fields should has default values like null, 0 ...
11
votes
2answers
700 views

Does serialization preserve object identity?

I am using the Java Serializable interface and the ObjectOutputStream to serialize objects (until now, this method has been sufficient for my purposes). My API relies on object identity for some ...
10
votes
3answers
326 views

Why does scala.Serializable not specify any methods?

Because the Java language required all interface members to be public and the original designers didn't want to force the "methods" of java.io.Serializable to be public, this was not possible in Java. ...
10
votes
1answer
343 views

Java: Static transient fields

I just found out in Java you can declare a field 'static transient' - the compiler doesn't complain. This doesn't seem to be useful in any way since static fields are not serialized, as we all know. ...
10
votes
5answers
2k views

Spring session-scoped beans (controllers) and references to services, in terms of serialization

a standard case - you have a controller (@Controller) with @Scope("session"). classes put in the session usually are expected to implement Serializable so that they can be stored physically in case ...
9
votes
1answer
117 views

Is there any way by which I can save the state of `static members`?

Just like the way we save the instance variables using serialization, is there any way by which I can save the state of static members? If there is a situation, where getting back the state of ...
9
votes
5answers
6k views

How to solve circular reference in json serializer caused by hibernate bidirectional mapping?

I am writing a serializer to serialize POJO to JSON but stuck in circular reference problem. In hibernate bidirectional one-to-many relation, parent references child and child references back to ...
9
votes
5answers
849 views

How can I deserialize the object, if it was moved to another package or renamed?

Consider the following situation: There is a serialization file, created by the older version of the application. Unfortunately, the package has changed for the class, that has been serialized. And ...
9
votes
7answers
14k views

What is the best way to convert a java object to xml with open source apis

I was wondering what the best or most widely used apis are to convert a java object to xml. I'm fairly new on the subject. Is there some sort of api call you can make to pass in an object and return ...
9
votes
8answers
6k views

What is object serialization?

What is meant by "object serialization"? Can you please explain it with some examples?
9
votes
3answers
4k views

How to best serialize a java.awt.Image?

I have a Serializable object which is supposed to hold a java.awt.Image as its member. How should I go about serializing it? (Edited from a not so clear first version, sorry.)
8
votes
3answers
265 views

Why wasn't java.io.Serializable deprecated in Java 5?

In pre Java 5, there were no annotations. As a result you could not add metadata to a class. To mark a class as serializable, you had to implement the Serializable interface (which is just that, a ...
8
votes
2answers
671 views

Serializing List of Interfaces GSON

I came across some weird behavior in GSON. If I have the following class structure: public interface Animal { public void nothing(); } public class Cat implements Animal { private String ...
8
votes
2answers
10k views

converting Java bitmap to byte array

Bitmap bmp = intent.getExtras().get("data"); //from camera int size = bmp.getRowBytes() * bmp.getHeight(); ByteBuffer b = ByteBuffer.allocate(size); bmp.copyPixelsToBuffer(b); byte[] bytes = new ...
8
votes
2answers
2k views

How to handle a Findbugs “Non-transient non-serializable instance field in serializable class”?

Consider the class below. If I run Findbugs against it it will give me an error ("Non-transient non-serializable instance field in serializable class") on line 5 but not on line 7. 1 public class ...
8
votes
6answers
2k views

SerializationPolicy error when performing RPC from within GWT application

I'm getting the following exception: com.google.gwt.user.client.rpc.SerializationException: Type 'java.lang.Long' was not included in the set of types which can be serialized by this ...
8
votes
5answers
944 views

how to test in Java that a class implements Serializable correctly (not just is an instance of Serializable)

I am implementing a class to be Serializable (so it's a value object for use w/ RMI). But I need to test it. Is there a way to do this easily? clarification: I'm implementing the class, so it's ...
8
votes
3answers
1k views

Clojure data structure serialization

I have a complex Clojure data structure that I would like to serialize - basically the entire current game state for an online game I am developing so that I can implement save game files. My ...
8
votes
1answer
1k views

Serialization Performance and Google Android

I'm looking for advice to speed up serialization performance, specifically when using the Google Android. For a project I am working on, I am trying to relay a couple hundred objects from a server to ...
8
votes
4answers
2k views

java serialization and final fields

I have an class defining an immutable value type that I now need to serialize. The immutability comes from the final fields which are set in the constructor. I've tried serializing, and it works ...
8
votes
4answers
5k views

Java serialization: readObject() vs. readResolve()

The book Effective Java and other sources provide a pretty good explanation on how and when to use the readObject() method when working with serializable Java classes. The readResolve() method, on the ...
8
votes
7answers
656 views

Serialization of objects: no thread state can be involved, right?

I am looking hard at the basic principles of storing the state of an executing program to disk, and bringing it back in again. In the current design that we have, each object (which is a C-level ...
7
votes
1answer
110 views

Size of a serialized null values

I have to send through the network a complex object which references are almost all of them Null, but I wonder about the size of this object with this null references inside. Which is the size of a ...
7
votes
5answers
184 views

What are the pros and cons of using serialVersionUID and @SuppressWarnings(“serial”) on classes implementing Serializable?

This question has been the subject of some lively discussions in my team. My personal choice is to use @SuppressWarnings("serial") My thoughts are that it means there is one less thing to maintain ...
7
votes
3answers
109 views

HashMap Serializability

HashMap implements the Serializable interface; so it can be serialized. I have looked at the implementation of HashMap and the Entry[] table is marked as transient. Since the Entry[] table is the one ...

1 2 3 4 5 22