是的,您必须将jar添加到项目的构建路径中。
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
import org.fxmisc.richtext.CodeArea;
import org.fxmisc.richtext.LineNumberFactory;
import org.fxmisc.richtext.StyleSpans;
import org.fxmisc.richtext.StyleSpansBuilder;
import org.fxmisc.richtext.demo.JavaKeywords;
public class MainFX extends Application {
private CodeArea codeArea = new CodeArea();
private String exampleString = "This is a WARNING for an INFO! Please stay tuned";
private static final String[] KEYWORDS = new String[] { "INFO", "WARNING" };
/* This keyword could get another color by css */
private static final String[] DEBUG_KEYWORD = new String[] { "DEBUG" };
private static final String KEYWORD_PATTERN = "\\b("
+ String.join("|", KEYWORDS) + ")\\b";
private static final String PAREN_PATTERN = "\\(|\\)";
private static final String BRACE_PATTERN = "\\{|\\}";
private static final String BRACKET_PATTERN = "\\[|\\]";
private static final String SEMICOLON_PATTERN = "\\;";
private static final String STRING_PATTERN = "\"([^\"]|\\\")*\"";
private static final Pattern PATTERN = Pattern.compile("(?<KEYWORD>"
+ KEYWORD_PATTERN + ")" + "|(?<PAREN>" + PAREN_PATTERN + ")"
+ "|(?<BRACE>" + BRACE_PATTERN + ")" + "|(?<BRACKET>"
+ BRACKET_PATTERN + ")" + "|(?<SEMICOLON>" + SEMICOLON_PATTERN
+ ")" + "|(?<STRING>" + STRING_PATTERN + ")");
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) {
primaryStage.setTitle("Richtext demo");
String stylesheet = JavaKeywords.class.getResource("java-keywords.css")
.toExternalForm();
IntFunction<String> format = (digits -> " %" + digits + "d ");
codeArea.setParagraphGraphicFactory(LineNumberFactory.get(codeArea,
format, stylesheet));
codeArea.textProperty().addListener((obs, oldText, newText) -> {
codeArea.setStyleSpans(0, computeHighlighting(newText));
});
codeArea.replaceText(0, 0, exampleString);
Scene scene = new Scene(new StackPane(codeArea), 600, 400);
scene.getStylesheets().add(stylesheet);
primaryStage.setScene(scene);
primaryStage.show();
}
/**
* For Content highlighting
*/
private static StyleSpans<Collection<String>> computeHighlighting(
String text) {
Matcher matcher = PATTERN.matcher(text);
int lastKwEnd = 0;
StyleSpansBuilder<Collection<String>> spansBuilder = new StyleSpansBuilder<>();
while (matcher.find()) {
String styleClass = matcher.group("KEYWORD") != null ? "keyword"
: matcher.group("PAREN") != null ? "paren" : matcher
.group("BRACE") != null ? "brace" : matcher
.group("BRACKET") != null ? "bracket" : matcher
.group("SEMICOLON") != null ? "semicolon" : matcher
.group("STRING") != null ? "string" : null; /* never happens */
assert styleClass != null;
spansBuilder.add(Collections.emptyList(), matcher.start()
- lastKwEnd);
spansBuilder.add(Collections.singleton(styleClass), matcher.end()
- matcher.start());
lastKwEnd = matcher.end();
}
spansBuilder.add(Collections.emptyList(), text.length() - lastKwEnd);
return spansBuilder.create();
}
}
和DEBUG的CSS:
.debug {-fx-fill: #8346F2;-fx-font-weight: bold;}
有关更多信息,请参阅此演示。
如何使用
将一段文档传入BeautifulSoup 的构造方法,就能得到一个文档的对象, 可以传入一段字符串或一个文件句柄. from bs4 import BeautifulSoup soup = BeautifulSoup(open("index.html")) soup = BeautifulSoup("<html>data</html>") 首先,文档被转换成Unicode,并且HTML的实例
基础运用 Redis::set('user:profile:' . $id, "Swoft"); $userDesc = Redis::get('user:profile:' . $id); 你可以通过 Redis:: 调用任何 Redis 命令。Swoft 使用魔术方法将命令传递给 Redis 服务端,因此只需传递 Redis 命令所需的参数即可。示例: Redis::set('name',
引入 WeUI.css文件 利用 vue init mpvue/mpvue-quickstart my-project 初始化一个 mpvue 项目,然后在 /src/main.js 中引入 weui.css 由于是在小程序中使用,于是就直接使用了 weiui-wxss 中的样式文件,官方提供的是 weui.wxss,因此手动转成了 weui.css,然后引入即可。 这里提供 weui.css 一
将一段文档传入BeautifulSoup 的构造方法,就能得到一个文档的对象, 可以传入一段字符串或一个文件句柄. from bs4 import BeautifulSoup soup = BeautifulSoup(open("index.html")) soup = BeautifulSoup("<html>data</html>") 首先,文档被转换成Unicode,并且HTML的实例
目录 简介 定义资源 主流框架的默认适配 抛出异常的方式定义资源 返回布尔值方式定义资源 注解方式定义资源 异步调用支持 规则的种类 流量控制规则 熔断降级规则 系统保护规则 访问控制规则 热点规则 查询修改规则 定制规则推送方式 其它 API 业务异常统计 Tracer 上下文工具类 ContextUtil 指标统计配置 规则生效的效果 判断限流降级异常 Dashboard 实时监控 简介 Se