RapidMiner in Android app

TuskenTusken MemberPosts:1Contributor I
edited November 2018 inHelp
Hi guys, is there a possibility how can i integrate RapidMiner libraries into Android app? There is my code

public void runRapidMiner(){
RapidMiner.setExecutionMode(RapidMiner.ExecutionMode.COMMAND_LINE);
RapidMiner.init();
Process process = null;
try {
process = new Process(new File("/home/patrik/Plocha/mojSrom.rmp"));
process.run();
} catch (IOException e) {
e.printStackTrace();
} catch (XMLException e) {
e.printStackTrace();
} catch (OperatorException e) {
e.printStackTrace();
}
}
I got RUNTIME error java.lang.NoClassDefFoundError for class: Ljavax/swing/JComponent and for class com.rapidminer.tools.I18N (this class is in included external library),
Tagged:

Answers

  • David_ADavid_A Administrator, Moderator, Employee, RMResearcher, MemberPosts:296RM Research
    Hi,

    I've seen you got some help on stackoverflow.
    Otherwise it would be great if you could us informed on your progress, as this is a very interesting project.

    Best,
    David
Sign InorRegisterto comment.