Jack Son's Learning Notes (I)

Summary Jackson framework is a set of data processing tools based on Java platform, which is called "the best Java Json parser".   The Jackson framework contains three core libraries: streaming, databind and annotations. Jackson also contains other data processing class libraries, which are not explained. Jackson version: ...

Added by SensualSandwich on Wed, 22 May 2019 22:52:16 +0300

Notes - Advanced Java Foundation to Face Difficulties 1

Collection set The length of the array is fixed, and the length of the set is variable. Arrays store elements of the same type, which can store basic data type values. Collections store objects. And the types of objects can be inconsistent. Set framework import java.util.Collection; import java.util.ArrayList; //Common methods of Collection pu ...

Added by EvilCoatHanger on Tue, 21 May 2019 22:21:43 +0300

Common Operating Methods of Java Threads

Introducer At the beginning, multithreading development is very important, so it is necessary to understand the common operation methods of threads and use multithreading more conveniently. In fact, the sleep() method is enough. primary coverage Common methods of thread operation concrete content Multithreading has many method definitions, ...

Added by JDBurnZ on Tue, 21 May 2019 20:38:04 +0300

JAVA Creates MS AD Account and Sets Password through SSL Certificate

JAVA Creates MS AD Account and Sets Password through SSL CertificateRecently, due to the need for work to sort out automation things, because the company launched OA last year, so the company's entry system will submit user information to the IT department, the earliest way is to enter, the IT department collects user information in AD to creat ...

Added by zzlong on Tue, 21 May 2019 02:29:58 +0300

ZooKeeper Series (2): Install and set up ZooKeeper environment

ZooKeeper has three installation modes: standalone, pseudo-cluster, and cluster: standalone mode: Install ZooKeeper on only one machine and start only one ZooKeeper instance. Pseudo Cluster: Open multiple ZooKeeper instances on one machine to simulate a cluster.This is achieved by loading different profiles and assigning different data direct ...

Added by konqest on Mon, 20 May 2019 02:51:17 +0300

Java Learning Notes: Chapter 7 Arrays

Java Learning Notes: Chapter 7 Arrays Overview and characteristics of arrays Definition of arrays 7.2.1 Array Declaration 7.2.2 Initialization Traversal of 7.3.1 Array 7.3.2 for-each cycle Copies of 7.3.3 arrays 7.3.4 java.util.Array class 7.4 Multidimensional Array 7.5 Array Storage Table Data 7.6.1 Foundation Algorithms for ...

Added by wizardry on Sat, 18 May 2019 17:24:33 +0300

Basic Sharing of Java Development on Web-Student Information Management System

As promised, we will update the content of Java Web today. The background is that the blogger will have a Java Web exam in a few days. The topic is to develop a small web page covering the semester's learning content and other knowledge within the time limit. The reason for choosing the title "Student Information Managemen ...

Added by kumschick on Sat, 18 May 2019 05:32:41 +0300

3/7 of the Java Foundation in 7 days

API overview What is API? API (Application Programming lnterface), application programming interface. The so-called API is the value of many classes, many methods, JDK gives us a lot of ready-made classes, we can use them directly, these classes are API. API Official Documentation The Use of Scanner Classes in Several Common API s Guide bag B ...

Added by tbare on Sat, 18 May 2019 00:14:56 +0300

In-depth IO want to learn must see! Benefit a lot~

I: Overview of IO Flow IO streams are simply Input and Output streams. IO streams are mainly used to process data transmission between devices. Java operates on data through streams, while Java objects used for operation streams are in IO packages. Classification: According to operation data, it can be divided into byte stream and character st ...

Added by kontesto on Fri, 17 May 2019 19:47:45 +0300

Solution of Single Case Model in Concurrent

The most memory-intensive object creation process must be constrained. As a Singleton, it always maintains that there is only one instance in the application, which can significantly improve the performance of the program. The following four implementations of singleton are discussed. The stability of Singleton under single thread is excellent ...

Added by jshowe on Fri, 17 May 2019 16:22:44 +0300