免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1272 | 回复: 0
打印 上一主题 下一主题

JAVA bsf 脚本引擎 在字符处理中的应用 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-05-08 16:56 |只看该作者 |倒序浏览
字符串批量处理中,情况多种多样,要在编译代码中预测所有可能的情况比较困难. 采用filter,plugin 的方式可以大大简化代码编写量,同时提供方便的扩展性.
这里主要讨论java 中如何掉用javascript 以及二者之间的变量传递关系,有于时间关系只看以下String 类型的数据.
bsf
http://jakarta.apache.org/bsf/index.html
rhino
http://www.mozilla.org/rhino/

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/

/**
*
* @author Administrator
*/
import org.apache.bsf.*;
import org.apache.bsf.util.*;
public class TestU {
    public static void main(String args[]){
   
        String sourcehead = "function dealparm(){" +
                " str = bsf.lookupBean('strparm');" +
                "return str+\"javascript return;\";}";
      try{
        BSFManager mgr = new BSFManager ();
        //设置     
        BSFEngine rhinoEngine = mgr.loadScriptingEngine ("javascript");        
        //rhinoEngine.eval(parm, arg1, arg2, args)
        rhinoEngine.eval ("javascript", 0, 0, sourcehead);
        mgr.registerBean("strparm", "testparm1");
        Object result = rhinoEngine.eval("javascript", 0, 0, "dealparm();");

        //输出显示
        System.out.println(result);
        mgr.registerBean("strparm", "testparm2");
        result = rhinoEngine.eval("javascript", 0, 0, "dealparm();");
        //输出显示

        System.out.println(result);
      }catch(Exception e){
        e.printStackTrace();
      }
      
    }
}

输出结果:
testparm1javascript return;
testparm2javascript return;



BSFEngine.eval 说明
public java.lang.Object eval(java.lang.String source,
                             int lineNo,
                             int columnNo,
                             java.lang.Object expr)
                      throws
BSFException
This is used by an application to evaluate an expression. The expression may be string or some other type, depending on the language. (For example, for BML it'll be an org.w3c.dom.Element object.)
Parameters:
source - (context info) the source of this expression (e.g., filename)
lineNo - (context info) the line number in source for expr
columnNo - (context info) the column number in source for expr
expr - the expression to evaluate
Throws:
BSFException
- if anything goes wrong while eval'ing a BSFException is thrown. The reason indicates the problem.


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/4831/showart_681266.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP