Java String Advanced
Java String Advanced
Preface
There are three most commonly used classes for string operations, namely String, StringBuilder, and StringBuffer, which will be discussed in detail below. Talk about these three classes...
String
The String class represents a string. This is the most basic class for strings. This is also used There are many classes, so I won’t introduce them in detail here
Construction
Common methods
##new String(String str)
new String(StringBuilder str)
- ##new String(StringBuffer str)
- new String(byte[] bys,String charsetName)
Constructs a new String by decoding the specified byte subarray using the specified character set.
##str charAt(int index)
- Returns the character at the specified index
String concat(String str)
- Connect the specified string str to the end of this string and return the characters after the connection is successful, so it needs to be accepted to have an effect.
boolean contains(CharSequence s)
- Determine whether this string contains the specified char value sequence. CharSequence here is an interface and its subclasses can be used directly. As parameter (String, StringBuffer, StringBuild)
static String copyValueOf(char[] c)
- Convert character array into string and return
static String copyValueOf(char[] c,int off,int count)
- Convert the intercepted character array into a string and return it. Off is the subscript to start interception, and count is Number of interceptions
boolean endWith(String s)
- Determine whether the string ends with s
boolean equals(Object o)
- Used for comparison
int indexOf(char c)
- Returns the index of the first occurrence of character c in the string
int indexOf(char c,int fromIndex)
- Start searching from the specified index and find the first occurrence of the index
int indexOf(String str)
- Returns the index of the first occurrence of the specified substring in this string.
int indexOf(String str,int fromIndex)
- Returns the index of the first occurrence of the specified substring in this string, starting from the specified index .
boolean isEmpty()
##int length()
- Whether to match the regular expression
boolean matches(String regex)
- Return string A copy of , ignoring leading and trailing whitespace.
trim()
- Returns a new string that is a substring of this string.
String substring(int beginIndex)
- Returns a new string that is a substring of this string.
String substring(int beginIndex, int endIndex)
- Converts all characters in this String to uppercase using the rules of the default locale.
String toUpperCase()
- Split this string based on matches of the given regular expression.
String[] split(String regex)
- Split this string based on matching the given regular expression.
String[] split(String regex, int limit)
- Convert this string to a new character array.
char[] toCharArray()
- Encode this
byte[] getBytes(Charset charset)
- String
to ## using the given
charset
#bytesequence and store the result into a new byte array
Note the new above
The construction method String(byte[] bys,String charsetName) is very important. It can change the encoding set of the string (used in conjunction with byte[] getBytes(Charset charset)). Let's look at an example. The code is as follows:
- StringBuffer
/* * InputStreamReader实现了将字节流FileInputStream转换为字符流,然后使用转换来的字节流创建高效流,从而实现高效的读写 *//* * 编码集(我的eclipse编辑器默认的是utf-8 * 下面将中文字符串的编码集变为GBK写入a.txt文件,因为a.txt默认的是utf-8的因此这里在文件中显示的是乱码 * 然后我们读出来的还是GBK的,因为我们写入的是GBK编码集的,但是我的eclipse是utf-8的编码集,因此在控制台上输出的还是乱码 * new String(byte[] bys,String * charsetName)使用这个构造方法将byte数组改变编码集并且转换为utf-8格式的,那么这次在控制台上输出的就不乱码了 */// 将GBK格式的中文写入a.txt文件File file = new File("src/a.txt"); FileOutputStream fileOutputStream = new FileOutputStream(file); String str = "中";byte[] by = str.getBytes("GBK"); // 将字符串改为GBK编码集fileOutputStream.write(by); fileOutputStream.close(); //从a.txt文件中读取中文FileInputStream fileInputStream = new FileInputStream(file);int len;byte[] bys = new byte[4];while ((len = fileInputStream.read(bys)) != -1) { System.out.println(new String(bys, "GBK")); } fileInputStream.close();Copy after login
, but cannot be modified. Of course, the most important point is thread safety. We can see from its source code that thread control blocks are used for some operations (
append,insert
..) To achieve synchronization, it is suitable for use under multi-threading. The source code is as follows:
public synchronized StringBuffer append(Object obj) {super.append(String.valueOf(obj));return this; }public synchronized StringBuffer append(String str) {super.append(str);return this; } public synchronized StringBuffer delete(int start, int end) {super.delete(start, end);return this; }/** * @throws StringIndexOutOfBoundsException {@inheritDoc} * @since 1.2 */public synchronized StringBuffer deleteCharAt(int index) {super.deleteCharAt(index);return this; }Copy after login<h3 id="Construction">Construction</h3> <blockquote> <ul class=" list-paddingleft-2"> <li><p>##new StringBuffer(StringBuilder str)<code>
##new StringBuffer(String str) Commonly used methods
It is recommended to use this class in preference because it is faster than##StringBuffer append(str)
- will The str of the specified type is appended to the end of this string (
StringBuffer insert(int offest, str)String,char,char[],int,double,float,long,StringBuffer,StringBuilder
)
- Insert the str of the specified type into this sequence. offset represents the index of the starting position of insertion. The types include String, char, char[], int, double, float, long,StringBuffer,StringBuilder
String delete(int fromIndex,int endIndex)
- Removes the string in this sequence and returns a new buffer string
StringBuffer reverse()
- Reverse the string
String substring(int start)
- Return a new A String containing the subsequence of characters currently contained by this character sequence.
String substring(int start, int end)
- Returns a new String containing the subsequence of characters currently contained by this sequence.
StringBuffer deleteCharAt(int index)
- Removes the char at the specified position in this sequence.
int length()
- Length
Returns the data in this sequence string representation of .##String toString()
StringBuilder
StringBuffer
in most implementations. However, this class is not thread-safe and is only suitable for single threads. If you use multi-threading, it is recommended to useStringBuffer. Of course, you can also use this, but you need to implement synchronization yourself
Construction method
new StringBuilder(String str)The common methods of this class are the same as
Common methods
StringBuffer
, so I won’t list them one by one here. You can use them by referring to the aboveThe above is the detailed content of Java String Advanced. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Guide to Square Root in Java. Here we discuss how Square Root works in Java with example and its code implementation respectively.

Guide to Perfect Number in Java. Here we discuss the Definition, How to check Perfect number in Java?, examples with code implementation.

Guide to Random Number Generator in Java. Here we discuss Functions in Java with examples and two different Generators with ther examples.

Guide to the Armstrong Number in Java. Here we discuss an introduction to Armstrong's number in java along with some of the code.

Guide to Weka in Java. Here we discuss the Introduction, how to use weka java, the type of platform, and advantages with examples.

Guide to Smith Number in Java. Here we discuss the Definition, How to check smith number in Java? example with code implementation.

In this article, we have kept the most asked Java Spring Interview Questions with their detailed answers. So that you can crack the interview.

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is
