RapidMiner in Android app

TuskenTusken Member Posts: 1 Contributor I
edited November 2018 in Help
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, Member Posts: 297 RM 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 In or Register to comment.