由于xlsx
的最新版本仍为源格式,我使用
install.packages("xlsx", type = "source")
我在安装xlsx时遇到了以下问题。
Error : .onLoad failed in loadNamespace() for 'rJava', details:
call: inDL(x, as.logical(local), as.logical(now), ...)
error: unable to load shared object 'C:/.../R-3.5.0/library/rJava/libs/i386/rJava.dll':
LoadLibrary failure: The specified module could not be found.
由于我没有管理员权限,我手动设置了我的java路径
Sys.setenv(JAVA_HOME='C:/Program Files (x86)/Java/jre8/bin/')
原因可能是我有64位操作系统,但R和java都是32位?