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 Editor Pane (JEditorPane) - Swing Example

Java Editor Pane (JEditorPane) - Swing Example สำหรับ Editor Pane หรือ JEditorPane (javax.swing.JEditorPane) จัดอยู่ในกลุ่มของ Component ใช้สร้าง กล่องข้อความในรูปแบบของกราฟฟิก เหมือนกับ JTextPane แต่ความสามารถที่เหนือกว่าคือแสดงข้อความจาก HTML Format ด้วยการเรียกไฟล์ หรือ URL ได้ทันที เปรียบเหสมือน Web Browser

Java Editor Pane

Java Editor Pane (JEditorPane) - Swing Example


Syntax
JEditorPane editorPane = new JEditorPane();

Controls Icon Tools

Java Editor Pane

Icons ของ Editor Pane

Java Editor Pane

โครงสร้างไฟล์ ซึ่งเราจะทดสอบการเรียก HTML ไฟล์ และแสดงผลใน Editor Pane

thaicreate.html
<html>
<body>
	Welcome to ThaiCreate.Com <br>
	<b>Version : 2013</b>
	<br>
	<img src="save.gif">
	<br>
	<b>Text</b><br>
	<b>Text</b><br>
	<b>Text</b><br>
	<b>Text</b><br>
	<b>Text</b><br>
	<b>Text</b><br>
</body>
</html>

Java Editor Pane

ไฟล์ HTML เมื่อรันทดสอบผ่าน Web Browser


Example 1 การสร้าง Editor Pane จาก JEditorPane ด้วยการอ่าน HTML Format มาจากไฟล์ HTML

MyForm.java
package com.java.myapp;

import java.awt.EventQueue;
import java.io.IOException;
import javax.swing.JFrame;
import javax.swing.JEditorPane;

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, 362, 249);
		setTitle("ThaiCreate.Com Java GUI Tutorial");
		getContentPane().setLayout(null);
		
		JEditorPane editorPane = new JEditorPane();
		editorPane.setBounds(45, 33, 241, 134);
		editorPane.setEditable(false);
		java.net.URL helpURL = MyForm.class.getResource(
		                                "thaicreate.html");
		if (helpURL != null) {
		    try {
		        editorPane.setPage(helpURL);
		    } catch (IOException e) {
		        System.err.println("Attempted to read a bad URL: " + helpURL);
		    }
		} else {
		    System.err.println("Couldn't find file: thaicreate.html");
		}
		
		getContentPane().add(editorPane);
		
	}
}









Output

Java Editor Pane

แสดง Editor Pane ที่ดึงข้อความมาจาก HTML Format


Example 2 การสร้าง Editor Pane ด้วย JEditorPane แบบมี Scroll Pane

MyForm.java
package com.java.myapp;

import java.awt.EventQueue;
import java.io.IOException;

import javax.swing.JFrame;
import javax.swing.JEditorPane;
import javax.swing.JScrollPane;

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, 362, 249);
		setTitle("ThaiCreate.Com Java GUI Tutorial");
		getContentPane().setLayout(null);
		
		// ScrollPane
		JScrollPane scroll = new JScrollPane();
		scroll.setBounds(100, 52, 155, 93);
		
		// EditorPane
		JEditorPane editorPane = new JEditorPane();
		editorPane.setBounds(45, 33, 241, 134);
		editorPane.setEditable(false);
		java.net.URL helpURL = MyForm.class.getResource(
		                                "thaicreate.html");
		if (helpURL != null) {
		    try {
		        editorPane.setPage(helpURL);
		    } catch (IOException e) {
		        System.err.println("Attempted to read a bad URL: " + helpURL);
		    }
		} else {
		    System.err.println("Couldn't find file: thaicreate.html");
		}
		
		scroll.setViewportView(editorPane);
		getContentPane().add(scroll);
		
	}
}









Output

Java Editor Pane

แสดง Editor Pane แบบมี Scroll Pane

   
Share

Property & Method (Others Related)

Java GUI Swing Controls (Component)
Java Label (JLabel) - Swing Example
Java Button (JButton) - Swing Example
Java Toggle Button (JToggleButton) - Swing Example
Java Check Box (JCheckBox) - Swing Example
Java Radio Button (JRadioButton) - Swing Example
Java Button Group (ButtonGroup) - Swing Example
Java ComboBox (JComboBox) - Swing Example
Java List (JList) - Swing Example
Java Text Field (JTextField) - Swing Example
Java Text Area (JTextArea) - Swing Example
Java Scroll Bar (JScrollBar) - Swing Example
Java Slider (JSlider) - Swing Example
Java Progress Bar (JProgressBar) - Swing Example
Java Formatted TextField (JFormattedTextField) - Swing Example
Java Password Field (JPasswordField) - Swing Example
Java Spinner (JSpinner) - Swing Example
Java Separator (JSeparator) - Swing Example
Java Text Pane (JTextPane) - Swing Example
Java Tree (JTree) - Swing Example
Java Table (JTable) - Swing Example

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


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


   


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

 
Java GUI Swing Controls (Component)
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 อัตราราคา คลิกที่นี่