2020-10-12 13:16:09 +08:00

27 lines
626 B
Markdown

# Spring Parser
- 类全路径: `org.springframework.format.Parser`
- 类作用: 字符串准换成java对象
```java
@FunctionalInterface
public interface Parser<T> {
/**
* Parse a text String to produce a T.
* 将字符串转换成对象
* @param text the text string
* @param locale the current user locale
* @return an instance of T
* @throws ParseException when a parse exception occurs in a java.text parsing library
* @throws IllegalArgumentException when a parse exception occurs
*/
T parse(String text, Locale locale) throws ParseException;
}
```
- 类图
![Parser](/images/spring/Parser.png)