我正在使用 JavaFX 突出显示网页视图中的文字。但是当我运行我的代码时;以下例外情况发生。请有人给我一个解决方案。
提前致谢。 编辑:我已在下面添加了完整的错误堆栈。正如我的建议。
@FXML
private void _do_highlight(WebEngine engine, String _text) {
engine.executeScript("$('body').removeHighlight().highlight('" + _text + "')");
}
@FXML
private void hcone(MouseEvent event) {
str = one.getText(); // 'one' is a Textfield ...
if (submited == true) {
WebEngine engine = webview.getEngine();
engine.loadContent("<body><div id='content'>Hello asdfasdfasdf</div></body>");
_do_highlight(engine, str); // Each time str is found in webview, it must be highlighted
}
}
发生此错误
Exception in thread "JavaFX Application Thread" java.lang.RuntimeException: java.lang.reflect.InvocationTargetException
at javafx.fxml.FXMLLoader$MethodHandler.invoke(FXMLLoader.java:1762)
at javafx.fxml.FXMLLoader$ControllerMethodEventHandler.handle(FXMLLoader.java:1645)
at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:86)
at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:238)
at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:191)
at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(CompositeEventDispatcher.java:59)
at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:58)
at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114)
at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:56)
at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114)
at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:56)
at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:114)
at com.sun.javafx.event.EventUtil.fireEventImpl(EventUtil.java:74)
at com.sun.javafx.event.EventUtil.fireEvent(EventUtil.java:54)
at javafx.event.Event.fireEvent(Event.java:198)
at javafx.scene.Scene$ClickGenerator.postProcess(Scene.java:3437)
at javafx.scene.Scene$ClickGenerator.access$7900(Scene.java:3365)
at javafx.scene.Scene$MouseHandler.process(Scene.java:3733)
at javafx.scene.Scene$MouseHandler.access$1500(Scene.java:3452)
at javafx.scene.Scene.impl_processMouseEvent(Scene.java:1728)
at javafx.scene.Scene$ScenePeerListener.mouseEvent(Scene.java:2461)
at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:348)
at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:273)
at java.security.AccessController.doPrivileged(Native Method)
at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(GlassViewEventHandler.java:382)
at com.sun.glass.ui.View.handleMouseEvent(View.java:553)
at com.sun.glass.ui.View.notifyMouse(View.java:925)
at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
at com.sun.glass.ui.win.WinApplication.lambda$null$141(WinApplication.java:102)
at com.sun.glass.ui.win.WinApplication$$Lambda$37/584634336.run(Unknown Source)
at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at sun.reflect.misc.Trampoline.invoke(MethodUtil.java:71)
at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at sun.reflect.misc.MethodUtil.invoke(MethodUtil.java:275)
at javafx.fxml.FXMLLoader$MethodHandler.invoke(FXMLLoader.java:1757)
... 30 more
Caused by: netscape.javascript.JSException: ReferenceError: Can't find variable: $
at com.sun.webkit.dom.JSObject.fwkMakeException(JSObject.java:128)
at com.sun.webkit.WebPage.twkExecuteScript(Native Method)
at com.sun.webkit.WebPage.executeScript(WebPage.java:1426)
at javafx.scene.web.WebEngine.executeScript(WebEngine.java:948)
at bioassignment.StringOccurenceController._a_highlight(StringOccurenceController.java:83)
at bioassignment.StringOccurenceController.hcone(StringOccurenceController.java:96)
... 40 more
答案 0 :(得分:0)
基于异常
netscape.javascript.JSException:ReferenceError:无法找到变量:$
似乎你没有正确加载jQuery。
如果你看一下这个answer,你必须首先加载jQuery,然后执行你的脚本。
这对我没有例外(虽然内容没有突出显示,脚本不起作用......):
@FXML private WebView webView;
@FXML private TextField one;
@Override
public void initialize(URL url, ResourceBundle rb) {
}
@FXML
private void hcone(ActionEvent event){
String str = one.getText();
if(!str.isEmpty()){
WebEngine engine = webView.getEngine();
engine.loadContent("<body><div id='content'>Hello asdfasdfasdf</div></body>");
engine.documentProperty().addListener(
(prop, oldDoc, newDoc) -> _do_highlight(engine, str));
}
}
private void _do_highlight(WebEngine engine, String _text) {
executejQuery(engine,"$(\"body\").removeHighlight().highlight('" + _text + "');");
}
其中executejQuery()
是该答案中提到的方法,用于检查webEngine中加载的文档是否具有与加载的最小所需版本对应的jQuery版本,如果没有,则将jQuery加载到文档中默认的jQuery位置。
请注意,我添加了一个侦听器,因为该函数要求在执行脚本以注入jQuery之前将文档加载到WebView中。