HtmlFormatter
一个纯Java便利类,用于将String格式化为Html String。 它旨在与Android一起使用,但是由于它是纯Java,因此在Android领域之外应该可以正常使用,但是我不确定是否存在这种用例。
例子
。小的()
String input = "This is a small string";
String result = HtmlFormatter.from(input).small().getHtmlString();
System.out.println(result);
// ----- output -----
// This is a small string
.bold()或.strong()
input = "This is a bold string";
result = HtmlFormatt
2024-05-23 14:10:31
69KB
Java
1