Java, dynamic class loading from github sources -
okay, trying following:
i have java-files on github. want load these dynamic @ runtime. there possibility ? think urlclassloader not working, because dont have url containing folder of files, have url file itself.
thanks in advance
you can:
- download java file local system
- use javacompiler standardjavafilemanager (cf example in javacompiler javadoc) compiler java file class file can save on local system
- use urlclassloader load class file
Comments
Post a Comment