Buscar
Social
Ofertas laborales ES

Foro sobre Java SE > Error a la hora de usar imports org

import org.nfunk.jep.JEP;
import org.lsmp.djep.djep.DJep;
import org.nfunk.jep.Node;
import org.nfunk.jep.parseException;

estoy usando una libreria llamada JEP

me dan error el org mi codigo es el siguiente
public class Riemman {

public String MetodoRiemman(String txt_a, String txt_b, String txt_Funcion, String txt_Partitaciones){

String Mensaje = null;

try {
// Creacion del Objeto Djep llamado Integral
DJep Integral = new DJep();

Integral.addStandarFunctions();
Integral.addStandarConstants();
Integral.SetImplicitMul(true);

Integral.parseExpression(txt_a);
Double a = Integral.getValue();

Integral.parseExpression(txt_b);
Double b = Integral.getValue();
} catch (Exception e) {


}



return "" ;
}

noviembre 9, 2016 | Unregistered CommenterAndres

has importado correctamente los jars a tu proyecto??

jep-x.xx.jar y ext-x.x.x.jar

Otra cosa, es que tienes las funciones mal, en lugar de...

Integral.addStandarFunctions();
Integral.addStandarConstants();
Integral.SetImplicitMul(true);

Sería:


Integral.addStandardFunctions();
Integral.addStandardConstants();
Integral.setImplicitMul(true);

Respetando minúsculas y mayúsculas. Un saludo

noviembre 9, 2016 | Registered Commenterloderain