RapidMiner in Android app

Tusken
Tusken New Altair Community Member
edited November 2024 in Community Q&A
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),

Answers

  • David_A
    David_A New Altair Community Member
    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

Welcome!

It looks like you're new here. Sign in or register to get started.

Welcome!

It looks like you're new here. Sign in or register to get started.