-
0 votesanswersviews
Java Webstart:JRI(Java R接口)作为JNLP中的nativelib未找到
我正在尝试在我的webstart应用程序中加载JRI . 我总是得到这个例外: Cannot find JRI native library! Please make sure that the JRI native library is in a directory listed in java.library.path. JNLP文件: ... <resources> .... -
0 votesanswersviews
使用JRI绘制R图
我正在使用JRI在JSP中绘制图形 . 如果我使用下面的代码,它工作正常 . Rengine re = new Rengine (new String [] {"--vanilla"}, false, null); re.eval("jpeg('<filename>')"; re.eval("plot(x,y)"); re.e...