我正在尝试构建一个包含 R 代码的 java 项目。这背后的主要逻辑是我想在同一个项目中自动化数据结构和数据分析。部分我能够做到这一点。我将 R 连接到 Java 并且我的 R 代码运行良好。我在本地机器上完成了所有设置,并根据需要为我提供了所有输出。由于数据集很大,我试图在亚马逊服务器上运行它。但是当我将它转移到服务器时,我的项目无法正常工作。它无法执行library(XLConnect), library(rJava)
。每当我在我的 java 项目中调用这两个库时,它都会崩溃。在 R 代码中独立运行并给我输出。我能做些什么,以及如何解决这个错误。请帮我解决这个问题。
我的java代码是
import java.io.InputStreamReader;
import java.io.Reader;
public class TestRMain {
public static void main(String[] arg)throws Exception{
ProcessBuilder broker = new ProcessBuilder("R.exe","--file=E:\\New\\Modified_Best_Config.R");
Process runBroker = broker.start();
Reader reader = new InputStreamReader(runBroker.getInputStream());
int ch;
while((ch = reader.read())!= -1)
System.out.print((char)ch);
reader.close();
runBroker.waitFor();
System.out.println("Execution complete");
}
}
在Modified_Best_Config.R
我写了这些代码
library('ClustOfVar');
library("doBy");
library(XLConnect)
#library(rJava)
#library(xlsx)
path="E:/New/";
############Importing and reading the excel files into R##############
Automated_R <- loadWorkbook("E:/New/Option_Mix_Calculation1.xlsx")
sheet1 <- readWorksheet(Automated_R, sheet = "Current Output")
sheet2 <- readWorksheet(Automated_R, sheet = "Actual Sales monthly")
sheet3 <- readWorksheet(Automated_R, sheet = "Differences")
#####################Importing raw Data###############################
optionData<- read.csv(paste(path,"ModifiedStructureNewBestConfig1.csv",sep=""),head=TRUE,sep=",");
nrow(optionData)
optionDemand=sapply(split(optionData,optionData$Trim),trimSplit);
optionDemand1=t(optionDemand[c(-1,-2),]);
optionDemand1
################Calculating the equipment Demand####################
optionDemand2<-t(optionDemand2[c(-1,0)]);
Rownames <- as.data.frame(row.names(optionDemand2))
writeWorksheet(Automated_R,Rownames, sheet = "Current Output", startRow = 21, startCol = 1)
writeWorksheet(Automated_R,optionDemand2, sheet = "Current Output", startRow = 21, startCol = 2)
saveWorkbook(Automated_R)
但是java在这些行之后停止了它的操作。
library("doBy");
整套代码在我的本地机器上运行良好。但每当我试图在亚马逊服务器上运行它时,它就没有运行。在 R 中,此代码单独在服务器上运行。我还有几个 R 代码正在运行而没有任何错误。我该怎么办,请帮帮我。