Java
-
Example of a method for Java to get numbers in a string through regular expressions
preface This article uses a small example to learn how to obtain numbers in a string through regular expressions in Ja…… -
On the loss of digital accuracy in Java object to JSON
phenomenon Large numbers in Java, such as 18 / 19 bit integers (long), are converted into JSON. After they are output …… -
Detailed explanation of JDBC connection database in Java
1、 Concept 1. In order to enable the program to operate the database and operate the tables in the database, each dat…… -
Detailed explanation of Hibernate naming strategy
The naming strategy of Hibernate can reduce the maintenance of database identifier naming and further reduce the amoun…… -
Java implementation of random output 300 questions four operations
If you don't have much to say, please see the code: The above is the whole content of this article. I hope the content…… -
JDBC detailed explanation of Java transaction management learning
What is a Java transaction The general idea is that transactions are only related to databases. Transactions must comp…… -
Differences in Java Tostring(), (string), valueof() method
In the actual development and application of Java projects, the basic function of converting objects into strings is o…… -
Java decomposes a positive integer into prime factors
Program analysis: to decompose the prime factor of N, first find a minimum prime number k, and then complete it accord…… -
Java self addition and self subtraction operation process
No more nonsense. I'll post the code directly to you. The specific code is as follows: output i 2 j 7 k 7 h 3 p1 0 p2 …… -
Java prints out the digits in reverse order according to the number of positive integers
Title: give a positive integer with no more than 5 digits. Requirements: first, find how many digits it is, and second…… -
Java finds all subsets of a set through bit operation
Java does not have its own method to find all subsets of a set. We can find them through the subset law of the set. Al…… -
Java to merge cells and export excel examples
introduce POI provides APIs for Java programs to read and write files in Microsoft Office format. The document formats…… -
Java uses the nesting of conditional operators to complete the division of academic achievement
Title: use the nesting of conditional operators to complete this question: students with academic achievement > = 9…… -
Analysis of spring configuration file
Overview of spring configuration files brief introduction The spring configuration file is a "drawing" used to guide t…… -
Example of generating excel report file with Java
This simple operation will export data from the database, generate excel report and import Excel data into the databas…… -
Spring integrates the simple configuration method of quartz
However, it is rarely used directly in practical work. Spring quartz components are usually used, which can be automat…… -
Java image and byte array mutual conversion instance
Examples are as follows: File parsing: Fileimageoutputstream changed to fileoutputstream fileimageinputstream changed …… -
Explain the simple packaging and use of MySQL in detail
Source address https://github.com/YouXianMing/MySQL-Example Make sure your MySQL is running One of the database files …… -
Removing HTML tags from regular expressions in Java
The regular expression in Java removes the HTML tag, which is mainly used to display the content more accurately. For …… -
Detailed explanation of classreader, classvisitor and classwriter for ASM source code learning
ASM ASM is Java is a popular class library for reading script code, which is used to analyze and convert code based …… -
Comparison of several common thread pools in Java
1. Why use thread pool Many server applications, such as web servers, database servers, file servers, or mail servers,…… -
Java JSON does not generate null or empty string attributes (detailed explanation)
We usually use Java objects to convert JSON strings. Null or empty string attributes do not need to be generated into …… -
Detailed explanation of finding duplicate data instances in Java list
Detailed explanation of finding duplicate data instances in Java list Requirements: Find all duplicate data in a list …… -
Summary of several methods of reading file (binary, character) content in Java
There are many methods to read the file content in Java, such as reading the file content by byte, reading the file co…… -
Java JSON does not generate null or empty string attributes (detailed explanation)
We usually use Java objects to convert JSON strings. Null or empty string attributes do not need to be generated into …… -
Java wechat red envelope implementation algorithm
With the increasing popularity of WeChat, more and more people are studying WeChat. This time ago, our company made me…… -
Java counts English letters, spaces, numbers and other characters of input characters
Title: input a line of characters and count the number of English letters, spaces, numbers and other characters. Progr…… -
Java inputs three integers and outputs them from small to large (x, y, z)
Title: enter three integers x, y and Z. please output these three numbers from small to large. Program analysis: we tr…… -
Detailed explanation of java basic data types and encapsulation types (difference between int and integer)
Int is one of the eight primitive data types provided by Java. Java provides encapsulated classes for each primitive t…… -
In depth study of Java bytecode framework ASM
1、 What is ASM ASM is a Java bytecode manipulation framework, which can be used to dynamically generate classes or en…… -
A bug about escape characters in Java
In Java, you can define Such literal quantity, for example: System. out. println("\u535a\u5ba2\u56ed"); No matter what…… -
Summary of switching methods after installing multiple versions of JDK
preface Because I just arrived at the new company and installed jdk1 7 and the development tool MyEclipse 10. However,……