What is Data Serialization in Java

Similar Posts

  • Built in Java Classes

    Most modern languages support many of the data types we’ve looked at so far this term, including Stacks, Queues, Hash Maps/Dictionaries, and more. Many of these are supported within the language itself, often through a utility package, or something similar which can be imported, or from a third party library that can be imported. Which…

  • Java Linked List

    Along with other Java collections, there is a Linked List. You will want to use a parameterized constructor to work easier with Java Linked List. As a linked list, it has container elements which will store the data and allow you to navigate through it. We saw many of the methods used for a Linked…

  • Loops in Java

    Loops in Java work similarly to how you remember loops in C/C++ most likely. You have your counting loop (for), as well as your pretest conditional loop (while), and the conditional post test loop (do-while). Each of these work the same way you would expect them to in C/C++. For Loop The for loop is…

  • Multi-Tiered Applications

    In complex applications, we generally do not want to think about applications as containing all of the data, data access, user interface, and business logic into a single set of code. Now some applications will have more complicated layers, additional layers, or hybrid layers, but the basic idea is here. Little changes can be difficult…

  • Java Database Connectivity

    When developing a Java application which uses a database, you need to consider several things, such as are you developing the Java Application first, or the Database first? Which database are you going to use (Oracle, DB2, SQL Server, MySQL, etc) Regardless, you will need a JDBC driver for your Java application. Most likely this…

2 Comments

Comments are closed.