-
Notifications
You must be signed in to change notification settings - Fork 28
04 : Impressão Jasper Preview
SW Software e Consultoria edited this page May 1, 2021
·
1 revision
import br.com.swconsultoria.impressao.model.Impressao;
import br.com.swconsultoria.impressao.service.ImpressaoService;
import br.com.swconsultoria.impressao.util.ImpressaoUtil;
import net.sf.jasperreports.view.JasperViewer;
public class TesteImpressaoJasperPreview {
public static void main(String[] args) {
try {
//Faça a leitura do Arquivo
String xml = ImpressaoUtil.leArquivo("/d/teste/nfe.xml");
//Aqui está pegando o Layout Padrão
Impressao impressao = ImpressaoUtil.impressaoPadraoNFe(xml);
//Faz a impressão e retorna um Jasper Preview
JasperViewer jasperViewer = ImpressaoService.impressaoPreview(impressao);
//PAra mostrar o Preview
jasperViewer.setVisible(true);
} catch (Exception e) {
//Trate seus erros aqui
e.printStackTrace();
}
}
}