RapidMiner in Android app
Hi guys, is there a possibility how can i integrate RapidMiner libraries into Android app? There is my code
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),
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();
}
}
Tagged:
0
Answers
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