
学习研究
iteye_9747
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
小试groovy
[root@server-69 groovyLearn]# cat helloworld [code="java"]#!/usr/bin/env groovy println("Hello world") for (a in this.args) { println("Argument: " + a) } [/code] #groovy helloworld 1 3...原创 2013-09-02 14:46:21 · 146 阅读 · 0 评论 -
小试Lua
[root@server-X lua-5.2.2]# make Please do 'make PLATFORM' where PLATFORM is one of these: aix ansi bsd freebsd generic linux macosx mingw posix solaris See doc/readme.html for complete instructi...原创 2013-09-03 17:22:22 · 261 阅读 · 0 评论 -
获取class类字节数组的方法
研究jvm hotswap的过程中,有一步需要读取java class的字节流,本来想只提供一个class就好了,但是在Web项目下不通用,先记录下来,留待以后使用。 [code="java"] private static byte[] loadBytes(Class cls) throws IOException { if (cls == null) return...原创 2013-09-26 18:04:56 · 1126 阅读 · 0 评论