搜索内容

包含标签:Java 的文章
  • Java design pattern — singleton design pattern

    /*Design pattern: an effective solution to the problem. In fact, it is a kind of thought. 1. Single case design mode. ……
    Java
  • Java (4) enumeration class

    @ 1、 Introduction to enumeration class 2、 Custom enumeration class 1. Method 1: jdk5 Custom enumeration class before……
    Java
  • Java design pattern — singleton design pattern

    /*Design pattern: an effective solution to the problem. In fact, it is a kind of thought. 1. Single case design mode. ……
    Java
  • Java multithreaded programming — multithreading

    If you want to implement the definition of multithreading in Java, you need to have a special thread body class to def……
    Java
  • Java (2) multithreading

    @ 1、 Understanding of basic concepts 1. Program, process, thread 2. Single core CPU and multiple CPUs 3. Serial, para……
    Java
  • Java (6) collection

    1、 Overview of Java collection framework 1. What is a collection 2. Characteristics of sets 3. System of sets explain……
    Java
  • Enhanced for loop

    1、 Enhanced for loop 2、 Enhanced for loop format 3、 Enhanced for loop considerations
    Java
  • Java IO programming — file operation class

    The Java language provides support for file operating system operation, and this support is in Java io. The file class……
    Java
  • Java basic syntax

    A java program can be considered as a collection of objects that work together by calling each other's methods. The fo……
    Java
  • Java objects and classes

    Java as an object-oriented language. The following basic concepts are supported: In this section, we focus on the conc……
    Java
  • Java foundation – Collection

    Collection framework Java. util. Collection Common functions in the collection interface 1. Add booblean add(Object ob……
    Java
  • Java foundation – multithreading

    First, let's learn about the relationship between process and thread and the difference between them. { 1: To understa……
    Java
  • POI

    POI 1. Basic object 2. POI write 1. Import dependency <?xml version="1.0" encoding="UTF-8"?> <project xmlns="……
    Java
  • MVC

    MVC MVC: model view controller ----- > model view controller 1. Structure of previous years When the user understan……
    Java
  • Solve the JDK version problem of maven

    Add the following code to the POM file <build> <plugins> <plugin> ……
    Java
  • File upload

    File upload 1. File upload basis 2. Precautions 3. index. jsp <%-- Created by IntelliJ IDEA. User: Wang Date:……
    Java
  • Java based interfaces and internal classes

    Interface and inner class This paper mainly sorts out the difficulties encountered by some authors in Chapter 6 of Jav……
    Java
  • Cookies and sessions

    Cookies and sessions 1. Conversation Session: users open a browser, click many hyperlinks, access multiple web resourc……
    Java
  • SMBMS

    SMBMS(Supermarket Billing Management System ) 1. Project structure 2. Preparation for project construction 3. Realizat……
    Java
  • JavaBean

    JavaBean Entity class 1. JavaBeans have specific writing methods The ORM is generally used to map fields in the databa……
    Java
  • Maven

    Maven 1. Why learn Maven? 2. Maven project architecture management tool At present, we are using to import jar package……
    Java
  • Servlet

    Servlet 1. Introduction to Servlet The Java program that implements the servlet interface is called servlet 2. HelloSe……
    Java
  • Java Reflect

    Reflection 1. Overview of java reflection mechanism Reflection mechanism allows the program to obtain the internal inf……
    Java
  • Maven download and installation

    Maven download and installation 1、 Maven concept Development process: make -- > ant -- > Maven -- > gradle f……
    Java
  • Mail sending

    Mail sending 1. Principle Send mail: SMTP protocol Receiving mail: POP3 protocol Simple mail: plain text mail without ……
    Java
  • Redisson basic usage

    1. Redisson Redisson is the Java version of redis client officially recommended by redis. It provides many functions a……
    Java
  • Java fork / join framework

    brief introduction From jdk1 At the beginning of July 7, Java provided fork / join framework for parallel execution of……
    Java
  • Java Memory Model

    Shared memory model
    Java
  • JDK1. Implementation of HashMap in 8

    JDK1. The implementation of HashMap in 8 is similar to jdk1 The implementation in 7 is very different. Jdk1 is analyze……
    Java
  • E-commerce promotion background logic

    In the final analysis, the so-called marketing of e-commerce is the change of order amount; If we clearly know the cal……
    Java
  • FutureTask

    Asynchronous, never synchronous, parallel, never serial 1. Future A future represents the result of an asynchronous ca……
    Java
  • Java export Excel

    preface As we all know, excel is divided into two steps: These two steps are time-consuming. Generally, we check the d……
    Java