HTML-DEV-ToolLink:https://github.com/easonjim/HTML-DEV-ToolLink 常用的在线字符串编解码.代码压缩.美化.JSON格式化.正则表达式.时间转换工具.二维码生成与解码等工具,支持在线搜索和Chrome插件. HTML Development Tool Link:在线工具,支持搜索 Link:https://easonjim.github.io/HTML-DEV-ToolLink/index.html Chrome Plugin:Chro…
简介: javassist是一款可以在运行时生成字节码的工具,可以通过它来构造一个新的class对象.method对象,这个class是运行时生成的.可以通过简短的几行代码就可以生成一个新的class type ClassPool pool = ClassPool.getDefault(); CtClass cc = pool.get("test.Rectangle"); cc.setSuperclass(pool.get("test.Point")); //CtC…