博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Access Java API in Groovy Script
阅读量:5086 次
发布时间:2019-06-13

本文共 666 字,大约阅读时间需要 2 分钟。

$ cat Hello.java

package test;

public class Hello {

public int myadd(int x, int y) {

return 10 * x + y;

}

}

$ cat myapp.groovy

import test.Hello

def hello = new Hello()

println hello.myadd(13, 5)

$ javac Hello.java

$ mkdir test;mv Hello.class test

$ tree

.

├── groovy-all-2.2.1.jar

├── Hello.java

├── myapp.groovy

└── test

└── Hello.class

$ java -cp .:groovy-all-2.2.1.jar groovy.ui.GroovyMain myapp.groovy

135

Note:

  1. You can't use groovy-2.2.1.jar here, or you will get a NoClassDefFoundError;

  2. If your groovy script don't access other Java class, you can simply run "java -jar groovy-all-2.2.1.jar myapp.groovy".

转载于:https://www.cnblogs.com/darkmatter/p/3605691.html

你可能感兴趣的文章
构建之法阅读笔记02
查看>>
添加按钮
查看>>
移动端页面开发适配 rem布局原理
查看>>
Ajax中文乱码问题解决方法(服务器端用servlet)
查看>>
会计电算化常考题目一
查看>>
阿里云服务器CentOS6.9安装Mysql
查看>>
剑指offer系列6:数值的整数次方
查看>>
js 过滤敏感词
查看>>
poj2752 Seek the Name, Seek the Fame
查看>>
软件开发和软件测试,我该如何选择?(蜗牛学院)
查看>>
基本封装方法
查看>>
bcb ole拖拽功能的实现
查看>>
生活大爆炸之何为光速
查看>>
bzoj 2456: mode【瞎搞】
查看>>
[Typescript] Specify Exact Values with TypeScript’s Literal Types
查看>>
[GraphQL] Reuse Query Fields with GraphQL Fragments
查看>>
Illustrated C#学习笔记(一)
查看>>
理解oracle中连接和会话
查看>>
两种最常用的Sticky footer布局方式
查看>>
Scrapy实战篇(三)之爬取豆瓣电影短评
查看>>