GWT开发——java 与 js 通过 jsni 相互调用

2024-05-14 10:38
文章标签 java 开发 js 调用 相互 gwt jsni

本文主要是介绍GWT开发——java 与 js 通过 jsni 相互调用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1. java通过jsni调用内部js

 

  1.         Button button = new Button("java调用内部jsni的js方法");  
  2.         button.addClickHandler(new ClickHandler() {  
  3.               
  4.             @Override  
  5.             public void onClick(ClickEvent event) {  
  6.                 //gwt中java调用js方法  
  7.                 execute("js方法被调用");  
  8.                   
  9.             }  
  10.         });  
  11. /** 
  12.      * JSNI方法 
  13.      * @param id 
  14.      */  
  15.     public static native void execute(String str) /*-{ 
  16.         alert(str); 
  17.     }-*/;  

 

 

 

 

2. 内部js通过jsni调用java方法

 

 

  1. Button button1 = new Button("内部jsni的js调用java方法");  
  2.         button1.addClickHandler(new ClickHandler() {  
  3.               
  4.             @Override  
  5.             public void onClick(ClickEvent event) {  
  6.                 //gwt中java调用js方法  
  7.                 executeJs("java方法被调用");  
  8.                   
  9.             }  
  10.         });  
  11.     /** 
  12.      * JSNI方法,  里面调用java方法 javaAlert 
  13.      * @param id 
  14.      */  
  15.     public static native void executeJs(String str) /*-{ 
  16.         @com.hw.client.TestCall::javaAlert(Ljava/lang/String;)(str); 
  17.     }-*/;  

 

 

 

 

3.gwt中java方法调用外部js

 

在gwt工程的index.html中加入外部方法

  1. <mce:script language="JavaScript"><!--  
  2. function callOutJs(str){  
  3.     alert('此处是外部js方法:'+ str);  
  4.     }  
  5. // --></mce:script>  

 

 

然后在onModuleLoad中java方法进行调用

  1. Button button2 = new Button("JAVA调用外部js");  
  2.         button2.addClickHandler(new ClickHandler() {  
  3.               
  4.             @Override  
  5.             public void onClick(ClickEvent event) {  
  6.                 //gwt中java调用js方法  
  7.                 callOutJS("外部js被调用");  
  8.                   
  9.             }  
  10.         });  
  11.     /** 
  12.      * JSNI方法 调用外部js方法 
  13.      * @param id 
  14.      */  
  15.     public static native void callOutJS(String str) /*-{ 
  16.         $wnd.callOutJs(str); 
  17.     }-*/;  

 

 

 

 

4.  外部js调用gwt的java方法

在onModuleLoad方法中调用  outJsCallGwt();

 

outJsCallGwt方法为

  1.     /** 
  2.      * 需要被调用的js方法 
  3.      * @param id 
  4.      */  
  5.     private static native void outJsCallGwt() /*-{ 
  6.     $wnd.outJsCallGwt = function (str) { 
  7.         alert("此处是gwt:"+ str); 
  8.     }; 
  9. }-*/;  

 

在index.html中加入按钮以调用

  1. <button οnclick="outJsCallGwt('外部按钮被点击')">点击</button>  

 

 

 

 

 

 

现贴出application和index.html代码

 

  1. package com.hw.client;  
  2. import com.google.gwt.core.client.EntryPoint;  
  3. import com.google.gwt.event.dom.client.ClickEvent;  
  4. import com.google.gwt.event.dom.client.ClickHandler;  
  5. import com.google.gwt.user.client.Window;  
  6. import com.google.gwt.user.client.ui.Button;  
  7. import com.google.gwt.user.client.ui.RootPanel;  
  8. public class TestCall implements EntryPoint {  
  9.     public void onModuleLoad() {  
  10.         Button button = new Button("java调用内部jsni的js方法");  
  11.         button.addClickHandler(new ClickHandler() {  
  12.               
  13.             @Override  
  14.             public void onClick(ClickEvent event) {  
  15.                 //gwt中java调用js方法  
  16.                 execute("js方法被调用");  
  17.                   
  18.             }  
  19.         });  
  20.           
  21.         Button button1 = new Button("内部jsni的js调用java方法");  
  22.         button1.addClickHandler(new ClickHandler() {  
  23.               
  24.             @Override  
  25.             public void onClick(ClickEvent event) {  
  26.                 //gwt中java调用js方法  
  27.                 executeJs("java方法被调用");  
  28.                   
  29.             }  
  30.         });  
  31.           
  32.         Button button2 = new Button("JAVA调用外部js");  
  33.         button2.addClickHandler(new ClickHandler() {  
  34.               
  35.             @Override  
  36.             public void onClick(ClickEvent event) {  
  37.                 //gwt中java调用js方法  
  38.                 callOutJS("外部js被调用");  
  39.                   
  40.             }  
  41.         });  
  42.           
  43.         RootPanel.get().add(button);  
  44.         RootPanel.get().add(button1);  
  45.         RootPanel.get().add(button2);  
  46.         outJsCallGwt();  
  47.     }  
  48.       
  49.     /** 
  50.      * JSNI方法 调用外部js方法 
  51.      * @param id 
  52.      */  
  53.     public static native void callOutJS(String str) /*-{ 
  54.         $wnd.callOutJs(str); 
  55.     }-*/;  
  56.       
  57.     /** 
  58.      * JSNI方法 
  59.      * @param id 
  60.      */  
  61.     public static native void execute(String str) /*-{ 
  62.         alert(str); 
  63.     }-*/;  
  64.       
  65.       
  66.     /** 
  67.      * JSNI方法,  里面调用java方法 javaAlert 
  68.      * @param id 
  69.      */  
  70.     public static native void executeJs(String str) /*-{ 
  71.         @com.hw.client.TestCall::javaAlert(Ljava/lang/String;)(str); 
  72.     }-*/;  
  73.       
  74.     /** 
  75.      * 被js方法调用 
  76.      * @param id 
  77.      */  
  78.     public static void javaAlert(String str){  
  79.         Window.alert(str);  
  80.     }  
  81.       
  82.     /** 
  83.      * 需要被调用的js方法 
  84.      * @param id 
  85.      */  
  86.     private static native void outJsCallGwt() /*-{ 
  87.     $wnd.outJsCallGwt = function (str) { 
  88.         alert("此处是gwt:"+ str); 
  89.     }; 
  90. }-*/;  
  91. }  

 

 

  1. <!doctype html>  
  2. <html>  
  3.   <head>  
  4.     <meta http-equiv="content-type" content="text/html; charset=UTF-8">  
  5.     <link type="text/css" rel="stylesheet" href="TestCall.css" mce_href="TestCall.css">  
  6.     <title>Web Application Starter Project</title>  
  7.         <mce:script language=JavaScript><!--  
  8.         function callOutJs(str){  
  9.             alert('此处是外部js方法:'+ str);  
  10.         }  
  11.           
  12. // --></mce:script>  
  13.     <mce:script type="text/javascript" language="javascript" src="testcall/testcall.nocache.js" mce_src="testcall/testcall.nocache.js"></mce:script>  
  14.   </head>  
  15.   <body>  
  16.     <!-- OPTIONAL: include this if you want history support -->  
  17.     <iframe src="javascript:''" mce_src="javascript:''" id="__gwt_historyFrame" tabIndex='-1' style="position:absolute;width:0;height:0;border:0"></iframe>  
  18.       
  19.     <!-- RECOMMENDED if your web app will not function without JavaScript enabled -->  
  20.     <noscript>  
  21.       <div style="width: 22em; position: absolute; left: 50%; margin-left: -11em; color: red; background-color: white; border: 1px solid red; padding: 4px; font-family: sans-serif">  
  22.         Your web browser must have JavaScript enabled  
  23.         in order for this application to display correctly.  
  24.       </div>  
  25.     </noscript>  
  26.     <h1>Web Application Starter Project</h1>  
  27.     <table align="center">  
  28.       <tr>  
  29.         <td colspan="2" style="font-weight:bold;" mce_style="font-weight:bold;">Please enter your name:</td>          
  30.       </tr>  
  31.       <tr>  
  32.          <button onclick="outJsCallGwt('外部按钮被点击')">点击</button>  
  33.         <td id="nameFieldContainer"></td>  
  34.         <td id="sendButtonContainer"></td>  
  35.       </tr>  
  36.       <tr>  
  37.         <td colspan="2" style="color:red;" mce_style="color:red;" id="errorLabelContainer"></td>  
  38.       </tr>  
  39.     </table>  
  40.   </body>  
  41. </html>  




备注: 以上html代码中<mce:script  应该为<script 由于csdn代码编辑器自动改变了值


  1.  <script language=JavaScript>
  2.         function callOutJs(str){  
  3.             alert('此处是外部js方法:'+ str);  
  4.         }  
  5.           
  6. <script>

这篇关于GWT开发——java 与 js 通过 jsni 相互调用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/988519

相关文章

JVM 的类初始化机制

前言 当你在 Java 程序中new对象时,有没有考虑过 JVM 是如何把静态的字节码(byte code)转化为运行时对象的呢,这个问题看似简单,但清楚的同学相信也不会太多,这篇文章首先介绍 JVM 类初始化的机制,然后给出几个易出错的实例来分析,帮助大家更好理解这个知识点。 JVM 将字节码转化为运行时对象分为三个阶段,分别是:loading 、Linking、initialization

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

浅析Spring Security认证过程

类图 为了方便理解Spring Security认证流程,特意画了如下的类图,包含相关的核心认证类 概述 核心验证器 AuthenticationManager 该对象提供了认证方法的入口,接收一个Authentiaton对象作为参数; public interface AuthenticationManager {Authentication authenticate(Authenti

Spring Security--Architecture Overview

1 核心组件 这一节主要介绍一些在Spring Security中常见且核心的Java类,它们之间的依赖,构建起了整个框架。想要理解整个架构,最起码得对这些类眼熟。 1.1 SecurityContextHolder SecurityContextHolder用于存储安全上下文(security context)的信息。当前操作的用户是谁,该用户是否已经被认证,他拥有哪些角色权限…这些都被保

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

JS常用组件收集

收集了一些平时遇到的前端比较优秀的组件,方便以后开发的时候查找!!! 函数工具: Lodash 页面固定: stickUp、jQuery.Pin 轮播: unslider、swiper 开关: switch 复选框: icheck 气泡: grumble 隐藏元素: Headroom

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template

Hadoop企业开发案例调优场景

需求 (1)需求:从1G数据中,统计每个单词出现次数。服务器3台,每台配置4G内存,4核CPU,4线程。 (2)需求分析: 1G / 128m = 8个MapTask;1个ReduceTask;1个mrAppMaster 平均每个节点运行10个 / 3台 ≈ 3个任务(4    3    3) HDFS参数调优 (1)修改:hadoop-env.sh export HDFS_NAMENOD