以下是将.xls / .xlsx文件转换为.pdf
的代码当我尝试点击链接时 http://localhost:8080/examples/servlets/servlet/xlstopdfservlet
我收到以下错误
pmax
i1 <- !rowSums(df==1)>0
df[i1,] <- df[i1,]/do.call(pmax, df[i1,])
set.seed(24)
df <- as.data.frame(matrix(sample(1:8, 10*5, replace = TRUE), ncol=5))
The origin server did not find a current representation for the target
resource or is not willing to disclose that one exists.
答案 0 :(得分:0)
首先,当您在servlet中发布表单时使用doPost()
方法,而不是doGet()
。然后尝试从您的网址中删除/example
。