亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java編程Nashorn實例代碼

發布時間:2020-09-28 15:53:56 來源:腳本之家 閱讀:225 作者:CrazeBean 欄目:編程語言

本文研究的主要是Java編程Nashorn的相關內容,具體如下。

Nashorn是什么

Nashorn,發音“nass-horn”,是德國二戰時一個坦克的命名,同時也是java8新一代的javascript引擎--替代老舊,緩慢的Rhino,符合 ECMAScript-262 5.1 版語言規范。你可能想javascript是運行在web瀏覽器,提供對html各種dom操作,但是Nashorn不支持瀏覽器DOM的對象。這個需要注意的一個點。

之前學習Java8的時候恰好寫了個簡單的例子,所以放在這里記錄一下。

文件目錄:

  • StringFunction.java,字符串功能類
  • StringNashorn.java,封裝腳本引擎
  • NashornTest.java,測試引擎,引擎調用

StringFunction.java源碼:

public class StringFunction { 
   
  /** 
   * 字符串截取 
   */ 
  public String sub(String str, int start, int end) { 
    return str.substring(start, end); 
  } 
   
  /** 
   * 字符串拼接 
   */ 
  public String append(String... strs) { 
    StringBuilder result = new StringBuilder(strs[0]); 
    Stream.of(strs).skip(1).forEach(str -> result.append(str)); 
    return result.toString(); 
  } 
} 

StringNashorn.java源碼:

public class StringNashorn { 
   
  /** 
   * Nashorn腳本引擎 
   */ 
  private ScriptEngine nashorn = new ScriptEngineManager().getEngineByName("nashorn"); 
   
  /** 
   * 執行腳本 
   */ 
  public Object execute(String script) { 
    ScriptContext scriptContext = new SimpleScriptContext(); 
    // 定義一個名為stringfunction的函數,這個函數實際對應著一個StringFunction對象 
    scriptContext.setAttribute("stringfunction", new StringFunction(), 100); 
    nashorn.setContext(scriptContext); 
     
    Object result = null; 
    try { 
      result = nashorn.eval(script); 
    } catch (ScriptException e) { 
      e.printStackTrace(); 
    } 
     
    return result; 
  } 
} 

NashornTest.java源碼:

public class NashornTest { 
   
  public static void main(String[] args) { 
    String substring = "stringfunction.sub(\"abcdefghijk\", 1, 4);"; 
    String append = "stringfunction.append(\"abc\", \"def\");"; 
     
    StringNashorn nashorn = new StringNashorn(); 
    Object subResult = nashorn.execute(substring); 
    Object appendResult = nashorn.execute(append); 
    System.out.println(subResult.toString()); 
    System.out.println(appendResult.toString()); 
  } 
} 

運行main方法,運行結果:

bcd
abcdef

這里如果NashornTest.java改寫如下:

public class NashornTest { 
   
  public static void main(String[] args) { 
    // 腳本內用對象接收結果并打印 
    String substring = "var s1 = stringfunction.sub(\"abcdefghijk\", 1, 4);" 
        + " print(s1);"; 
    String append = "var s2 = stringfunction.append(\"abc\", \"def\");" 
        + " print(s2);"; 
     
    StringNashorn nashorn = new StringNashorn(); 
    // 這里execute不再返回對象,因為在腳本里面已經有對象接收sub和append的執行結果。 
    nashorn.execute(substring); 
    nashorn.execute(append); 
  } 
} 

同樣也會輸出相同的結果。

總結

以上就是本文關于Java編程Nashorn實例代碼的全部內容,希望對大家有所幫助。感興趣的朋友可以繼續參閱本站其他相關專題,如有不足之處,歡迎留言指出。感謝朋友們對本站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

加查县| 荆州市| 阜城县| 抚远县| 茶陵县| 碌曲县| 阿尔山市| 亚东县| 新平| 白银市| 乌兰察布市| 图木舒克市| 武平县| 普定县| 海丰县| 任丘市| 定南县| 陇西县| 天柱县| 镇远县| 松潘县| 晋江市| 上犹县| 阿克陶县| 天津市| 玉溪市| 咸阳市| 绥江县| 金山区| 宾阳县| 永登县| 天门市| 博白县| 乌什县| 囊谦县| 景谷| 淳化县| 门源| 山东省| 高碑店市| 金平|