I'm Trying to extract table using package (tabulizer) here is the simple code:
library(tabulizer)
file <- "https://www.sdccu.com/CURates/HomeLoanRates.pdf"
#extract tables
mortgagerates <- extract_tables(file, encoding = "UTF-8")
I got the following error:
Error in .jcall("RJavaTools", "Ljava/lang/Object;", "invokeMethod", cl, :
java.lang.IllegalAccessException: class RJavaTools cannot access a member of class java.util.ArrayList$Itr (in module java.base) with modifiers "public"
Please help me to solve this problem.