搜索内容

包含标签: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
  • Java (1): object oriented

    Java review notes (I): object oriented 0. How to understand "everything is an object" 1. Within the scope of Java lang……
    Java
  • Java (3) common classes

    @ Common Java classes 1、 String related classes 1. String class public class StringTest { String str = new Strin……
    Java
  • Enhanced for loop usage

    1、 Enhanced for loop Enhance the function of the for loop: simplify the writing format of the iterator. (Note: enhanc……
    Java
  • Java IO programming — character stream and byte stream

    In Java The file class in the IO package is the only program processing class related to the file itself, but the file……
    Java
  • Java thread — production and consumption

    /* JDK1. Version 4: producer, consumer. The problem of multiple producers and consumers. If judgment flag, only once, ……
    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 development environment configuration

    Installing Java in Windows system Download JDK First, we need to download the java development kit JDK at: http://www.……
    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
  • 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
  • Sharding JDBC quick start lesson 1

    1. General Shardingsphere is an ecosystem composed of a set of open source distributed database middleware solutions. ……
    Java
  • Introduction to bitmap

    1. BitMap The basic idea of bit map is to mark the value corresponding to an element with a bit bit, and the key is th……
    Java
  • Best memory cache framework caffeine

    Caffeine is a high-performance cache library and the best (optimal) cache framework based on Java 8. Cache (CACHE), ba……
    Java
  • Concurrent inventory reduction

    There are many scenes of second kill, such as rush buying, ticket grabbing, red envelope grabbing, etc. In short, ther……
    Java
  • Upward leadership and downward empowerment

    After all these years in the pit, as a Java siege lion and senior code Porter, I have something to say: 1. Raise techn……
    Java
  • Introduction to reactive

    Reactive is ideal for low latency, high throughput workloads. Reactive processing is a paradigm (specification) that e……
    Java
  • Second kill system

    Seckill commodity page static
    Java