aspose file tools
The moose likes Beginning Java and the fly likes advantage of serialization over i/o classes Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "advantage of serialization over i/o classes" Watch "advantage of serialization over i/o classes" New topic
Author

advantage of serialization over i/o classes

Ritesh raushan
Ranch Hand

Joined: Aug 29, 2012
Posts: 98
what's the problem in i/o classes to save the state of object.what's the advantage of Serialization over i/o classes.

Jeff Verdegan
Bartender

Joined: Jan 03, 2004
Posts: 5893
    
    6

I don't understand the question. Serialization uses I/O classes. Why do you think there's a problem or an advantage or a "one vs. the other" situation?
Seetharaman Venkatasamy
Ranch Hand

Joined: Jan 28, 2008
Posts: 5575

serialization performs deep copy by default. if you wish to go with your own then you need to take care all of this.
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32708
    
    4
But serialisation can impose a severe performance overhead on copying objects.
You ought not to think about serialisation versus I/O. Serialisation is one way to make an object suitable for I/O.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: advantage of serialization over i/o classes
 
Similar Threads
Serialization !!!!!!!!!!!!! Help me out
example answer to Developer's exam
what can we read in IO section ...
Test Results--What is the "API Contents" Section?
Difference between Externalizable and Serializable