import org.vcssl.nano.interconnect.ScriptLoader; ... public static void main(String[] args) throws VnanoException { // Vnano Engine のインスタンスを生成 VnanoEngine engine = new VnanoEngine(); // ライブラ リスクリプトをファイルから読み込む ScriptLoader scriptLoader = new ScriptLoader("UTF-8"); scriptLoader.setLibraryScriptListPath("./lib/VnanoLibraryList.txt"); scriptLoader.load(); // 読み込んだライブラリ スクリプトを VnanoEngine に登録 String[] libPaths = scriptLoader.getLibraryScriptPaths(true); String[] libScripts = scriptLoader.getLibraryScriptContents(); int libCount = libScripts.length; for (int ilib=0; ilib