Hola tengo un error con ireports

View: New views
1 Messages — Rating Filter:   Alert me  

Hola tengo un error con ireports

by Paulo-17 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hola le hablo para ver si me pueden ayudar con el error que tengo

estoy tratando de ejecutar un reporte hecho en irepot 2.0 y me sale el siguente error

java.util.MissingResourceException: Can't find bundle for base name Aplicacion, locale es_CO
        at java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:1521)
        at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:1260)
        at java.util.ResourceBundle.getBundle(ResourceBundle.java:962)
        at net.sf.jasperreports.engine.fill.JRFillDataset.loadResourceBundle(JRFillDataset.java:550)
        at net.sf.jasperreports.engine.fill.JRFillDataset.setParameterValues(JRFillDataset.java:581)
        at net.sf.jasperreports.engine.fill.JRBaseFiller.setParameters(JRBaseFiller.java:891)
        at net.sf.jasperreports.engine.fill.JRBaseFiller.fill(JRBaseFiller.java:716)
        at net.sf.jasperreports.engine.fill.JRBaseFiller.fill(JRBaseFiller.java:669)
        at net.sf.jasperreports.engine.fill.JRFiller.fillReport(JRFiller.java:63)
        at net.sf.jasperreports.engine.JasperFillManager.fillReport(JasperFillManager.java:402)
        at co.edu.uautonoma.siunac.reports.pruebas.Prueba.executeReport(Prueba.java:36)
        at co.edu.uautonoma.siunac.reports.pruebas.Prueba.main(Prueba.java:50)
BUILD SUCCESSFUL (total time: 45 seconds)


este es el codigo de la clase que lo ejecuta

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package co.edu.uautonoma.siunac.reports.pruebas;

import co.edu.uautonoma.siunac.reports.accesBD.ConexionDB;
import java.io.File;
import java.util.HashMap;
import java.util.Map;
import net.sf.jasperreports.engine.JasperFillManager;
import net.sf.jasperreports.engine.JasperPrint;
import net.sf.jasperreports.engine.JasperReport;
import net.sf.jasperreports.engine.util.JRLoader;
import net.sf.jasperreports.view.JasperViewer;


/**
 *
 * @author pperdomo
 */
public class Prueba {

    public void executeReport(){
        ConexionDB con = new ConexionDB();
        con.openBD();
        Map parameters = new HashMap();
        File ireport = new File("D:\\Reportes Compilados\\PruebaAs400.jasper");
        JasperReport masterReport = null;
        Map parametros = new HashMap();

        try {
             masterReport = (JasperReport) JRLoader.loadObject("D:\\Reportes Compilados\\PruebaAs400.jasper");

             JasperPrint jasperPrint = JasperFillManager.fillReport(masterReport, parametros, con.getConnection());
             JasperViewer jviewer = new JasperViewer(jasperPrint, false);
        //     jviewer.setTitle("Reporte");
             jviewer.setVisible(true);

        } catch (Exception e) {
            e.printStackTrace();
        }

     

    }

    public static void main(String arg[]){
        new Prueba().executeReport();
    }

}


les agradeceria que me ayudaran por que la verdad no se