- 浏览: 967 次
- 性别:
- 来自: 北京
最新评论
文章列表
最新的logback 1.1.2 发布了,该版本创建了抽象方法 createOutputStream 作为 SyslogBaseAppender 的扩展 LOGBACK-890 ,此外还包括:
Removed deprecated constructors in SocketAppender and related classes.
Fixed incorrect date format in SyslogAppender. (LOGBACK-936)
Fixed NullPointerException when substitut ...
在Java中,我们为了查找某个给定字符串中是否有需要查找的某个字符或者子字串、或者对字符串进行分割、或者对字符串一些字符进行替换/删除,一般会通过if-else、for 的配合使用来实现这些功能 。如下所示:
public class Test{