Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone



Clound SSD Virtual Server

Java GUI : Viewer/Preview iReport on JFrame/JPanel

Java GUI : Viewer/Preview iReport on JFrame/JPanel บทความนี้ขอต่อจากตอนที่แล้ว เกี่ยวกับการ Preview iReport Viewer บน Java GUI ซึ่งปกติแล้วตัว Viewer จะแสดงเป็น Dialog ขึ้นมาอัตโนัมติ แต่เราสามารถที่จะแสดง Frame ของ Report ในรูปแบบของเราเอง เช่น เราอาจจะสร้าง Frame ขึ้นมาตัวหนึ่งไว้สำหรับ Viewer Report เราก็สามารถจะโหลด Frame นั้นขึ้นมาแสดง และเอาตัว Viewer แสดงผลตามตำแหน่งของ Frame นั้น ๆ ตามต้องการ

Java GUI : Viewer/Preview iReport on JFrame/JPanel

Java GUI : Viewer/Preview iReport on JFrame/JPanel


Syntax
// Open Connection
Class.forName("com.mysql.jdbc.Driver");
Connection connect connect =  DriverManager.getConnection("jdbc:mysql://localhost/mydatabase" +
		"?user=root&password=root");

// Report Viewer
String report = new File(".").getCanonicalPath()+ "\\myReport.jrxml";
JasperReport ir = JasperCompileManager.compileReport(report);
JasperPrint ip = JasperFillManager.fillReport(ir, null,connect);

// Open Report in JFrame
JFrame frame = new JFrame();
frame.setTitle("ThaiCreate.Com Customer Report");
frame.setBounds(100, 100, 800,600);
frame.getContentPane().add(new JRViewer(ip));
frame.setVisible(true);

// Close Connection
connect.close();

สามารถออกแบบ Layout ต่าง ๆ ในหน้า Frame ได้ตามความต้องการ แล้วค่อย add ตัว JRViewer(ip) ลงใน Frame หรือจะใช้บน JPanel ก็ได้เช่นเดียวกัน








Code ทั้งหมด

MyForm.java
package com.java.myapp;


import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JButton;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import java.io.File;
import java.io.IOException;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;

import net.sf.jasperreports.engine.JRException;
import net.sf.jasperreports.engine.JasperCompileManager;
import net.sf.jasperreports.engine.JasperFillManager;
import net.sf.jasperreports.engine.JasperPrint;
import net.sf.jasperreports.engine.JasperReport;
import net.sf.jasperreports.swing.JRViewer;
import net.sf.jasperreports.view.JasperViewer;

public class MyForm extends JFrame {

	/**
	 * Launch the application.
	 */
	public static void main(String[] args) {
		EventQueue.invokeLater(new Runnable() {
			public void run() {
				MyForm frame = new MyForm();
				frame.setVisible(true);
			}
		});
	}

	/**
	 * Create the frame.
	 */
	public MyForm() {
		setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		setBounds(100, 100, 431, 286);
		setTitle("ThaiCreate.Com Java GUI Tutorial");
		getContentPane().setLayout(null);
		
		
		// Button Report
		JButton btnOpenReport = new JButton("Open Report");
		btnOpenReport.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent arg0) {
				
				Connection connect = null;
				
				try {
					Class.forName("com.mysql.jdbc.Driver");
					connect =  DriverManager.getConnection("jdbc:mysql://localhost/mydatabase" +
							"?user=root&password=root");
					
				} catch (ClassNotFoundException e1) {
					// TODO Auto-generated catch block
					e1.printStackTrace();
				} catch (SQLException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}
				
				// Application path
				String report = null;
				try {
					report = new File(".").getCanonicalPath()+ "\\myReport.jrxml";
				} catch (IOException e1) {
					// TODO Auto-generated catch block
					e1.printStackTrace();
				}
				
				try {
					
					// Report Viewer
					JasperReport ir = JasperCompileManager.compileReport(report);
					JasperPrint ip = JasperFillManager.fillReport(ir, null,connect);
					
					JFrame frame = new JFrame();
					frame.setTitle("ThaiCreate.Com Customer Report");
					frame.setBounds(100, 100, 800,600);
					frame.getContentPane().add(new JRViewer(ip));
					frame.setVisible(true);
					
				} catch (JRException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}
				
				try {
					connect.close();
				} catch (SQLException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}
				
			}
		});
		
		btnOpenReport.setBounds(137, 98, 146, 23);
		getContentPane().add(btnOpenReport);
		setResizable (false);
		
	}
}

Outout

Java GUI : Viewer/Preview iReport on JFrame/JPanel

คลิกที่ Button ของ Open Report

Java GUI : Viewer/Preview iReport on JFrame/JPanel

Report จะแสดงในหน้า Frame ที่เราได้สร้างไว้ เช่นใน Frame นี้มีการ setTitle ที่เรากำหนดขึ้น








บทความถัดไปที่แนะนำให้อ่าน


   
Share

Property & Method (Others Related)

iReport คืออะไร วิธีติดตั้ง iReport Designer for JasperReports (Step by Step)
Create iReport JasperReports and Database Connection
iReport Create Design Report Wizard and Preview Report (Step by Step)
Java GUI : Connect and Viewer/Preview iReport (JasperReport)
Java GUI : iReport Create Parameters and Pass Variable

ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


ลองใช้ค้นหาข้อมูล


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2013-09-12 11:43:02 / 2017-03-27 21:38:03
  Download : No files
 Sponsored Links / Related

 
iReport คืออะไร วิธีติดตั้ง iReport Designer for JasperReports (Step by Step)
Rating :


ThaiCreate.Com Forum


Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   







Load balance : Server 03
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่