⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jeditorpane.html

📁 API資料大全
💻 HTML
📖 第 1 页 / 共 5 页
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN""http://www.w3.org/TR/REC-html40/frameset.dtd"><!--NewPage--><HTML><HEAD><!-- Generated by javadoc on Thu Apr 27 23:38:39 PDT 2000 --><TITLE>Java 2 Platform SE v1.3: Class  JEditorPane</TITLE><LINK REL ="stylesheet" TYPE="text/css" HREF="../../stylesheet.css" TITLE="Style"></HEAD><BODY BGCOLOR="white"><!-- ========== START OF NAVBAR ========== --><A NAME="navbar_top"><!-- --></A><TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0"><TR><TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A NAME="navbar_top_firstrow"><!-- --></A><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">  <TR ALIGN="center" VALIGN="top">  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="class-use/JEditorPane.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>  </TR></TABLE></TD><TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM><b>Java<sup><font size=-2>TM</font></sup>&nbsp;2&nbsp;Platform<br>Std.&nbsp;Ed. v1.3</b></EM></TD></TR><TR><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">&nbsp;<A HREF="../../javax/swing/JDialog.AccessibleJDialog.html"><B>PREV CLASS</B></A>&nbsp;&nbsp;<A HREF="../../javax/swing/JEditorPane.AccessibleJEditorPane.html"><B>NEXT CLASS</B></A></FONT></TD><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">  <A HREF="../../index.html" TARGET="_top"><B>FRAMES</B></A>  &nbsp;&nbsp;<A HREF="JEditorPane.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD></TR><TR><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">  SUMMARY: &nbsp;<A HREF="#inner_class_summary">INNER</A>&nbsp;|&nbsp;<A HREF="#fields_inherited_from_class_javax.swing.text.JTextComponent">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">DETAIL: &nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD></TR></TABLE><!-- =========== END OF NAVBAR =========== --><HR><!-- ======== START OF CLASS DATA ======== --><H2><FONT SIZE="-1">javax.swing</FONT><BR>Class  JEditorPane</H2><PRE><A HREF="../../java/lang/Object.html">java.lang.Object</A>  |  +--<A HREF="../../java/awt/Component.html">java.awt.Component</A>        |        +--<A HREF="../../java/awt/Container.html">java.awt.Container</A>              |              +--<A HREF="../../javax/swing/JComponent.html">javax.swing.JComponent</A>                    |                    +--<A HREF="../../javax/swing/text/JTextComponent.html">javax.swing.text.JTextComponent</A>                          |                          +--<B>javax.swing.JEditorPane</B></PRE><DL><DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../javax/accessibility/Accessible.html">Accessible</A>, <A HREF="../../java/awt/image/ImageObserver.html">ImageObserver</A>, <A HREF="../../java/awt/MenuContainer.html">MenuContainer</A>, <A HREF="../../javax/swing/Scrollable.html">Scrollable</A>, <A HREF="../../java/io/Serializable.html">Serializable</A></DD></DL><DL><DT><B>Direct Known Subclasses:</B> <DD><A HREF="../../javax/swing/JTextPane.html">JTextPane</A></DD></DL><HR><DL><DT>public class <B>JEditorPane</B><DT>extends <A HREF="../../javax/swing/text/JTextComponent.html">JTextComponent</A></DL><P>A text component to edit various kinds of content. You can find how-to information and examples of using editor panes in <a href="http://java.sun.com/docs/books/tutorial/uiswing/components/text.html">Using Text Components</a>, a section in <em>The Java Tutorial.</em> <p> This component uses implementations of the <code>EditorKit</code> to accomplish its behavior. It effectively morphs into the proper kind of text editor for the kind of content it is given.  The content type that editor is bound to at any given time is determined by the <code>EditorKit</code> currently installed.  If the content is set to a new URL, its type is used to determine the <code>EditorKit</code> that should be used to load the content. <p> By default, the following types of content are known: <dl> <dt><b>text/plain</b> <dd>Plain text, which is the default the type given isn't recognized.  The kit used in this case is an extension of <code>DefaultEditorKit</code> that produces a wrapped plain text view. <dt><b>text/html</b> <dd>HTML text.  The kit used in this case is the class <code>javax.swing.text.html.HTMLEditorKit</code> which provides HTML 3.2 support. <dt><b>text/rtf</b> <dd>RTF text.  The kit used in this case is the class <code>javax.swing.text.rtf.RTFEditorKit</code> which provides a limited support of the Rich Text Format. </dl> <p> There are several ways to load content into this component. <ol> <li> The <a href="#setText">setText</a> method can be used to initialize the component from a string.  In this case the current <code>EditorKit</code> will be used, and the content type will be expected to be of this type. <li> The <a href="#read">read</a> method can be used to initialize the  component from a Reader.  Note that if the content type is HTML, relative references (e.g. for things like images) can't be resolved  unless the &lt;base&gt; tag is used or the <em>Base</em> property on HTMLDocument is set.  In this case the current <code>EditorKit</code> will be used, and the content type will be expected to be of this type. <li> The <a href="#setPage">setPage</a> method can be used to initialize the component from a URL.  In this case, the content type will be determined from the URL, and the registered <code>EditorKit</code> for that content type will be set. </ol> <p> For the keyboard keys used by this component in the standard Look and Feel (L&F) renditions, see the <a href="doc-files/Key-Index.html#JEditorPane">JEditorPane</a> key assignments. <p>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -