2014-10-27 74 views
0

我正在使用JavaFX突出显示webview中的文本。但是当我运行我的代码时,以下例外发生。请有人给我一个解决方案。执行webemgine.executescript时java.lang.reflect.InvocationTargetException

在此先感谢。 编辑:我已经添加了以下错误的完整堆栈。正如我所建议的那样。

@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

似乎'_do_highlight()'不应该有'@ FXML'注释,如果它是你从你的控制器调用的私有方法。此外,您应该显示完整的异常堆栈,以便我们可以找到错误的位置。 – 2014-10-27 09:41:44

+0

我试过删除@FXML后,结果保持不变。现在给出完整的异常堆栈.. – 2014-10-28 08:42:55

回答

0

基于异常

netscape.javascript.JSException: ReferenceError: Can't find variable: $

看来你是不加载正确的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中。

相关问题