java命名空间javax.swing类jeditorpane的类成员方法:
setcontenttype定义及介绍
本文导语:
setcontenttype
public final void setcontenttype(string type)
设置此编辑器所处理的内容类型。如果可以成功地找到编辑器工具包,则调用 geteditorkitforcontenttype,然后调用 seteditorkit。作为直接调用 seteditorkit 的一种替代方式,这是可用的最...
setcontenttype
public final void setcontenttype(string type)
- 设置此编辑器所处理的内容类型。如果可以成功地找到编辑器工具包,则调用
geteditorkitforcontenttype
,然后调用 seteditorkit
。作为直接调用 seteditorkit
的一种替代方式,这是可用的最便捷的方法。
如果将字符集定义指定为内容类型规范的参数,则在使用关联的 editorkit
加载输入流时使用它。例如,如果 type 指定为 text/html; charset=euc-jp
,则用注册为 text/html
的 editorkit
加载内容,并且提供给该 editorkit
以便将 unicode 加载到文档中的 reader 将使用 euc-jp
字符集转换到 unicode。如果无法识别该 type,则使用为纯文本 text/plain
注册的 editorkit
加载内容。
- 参数:
type
- 支持内容编辑的非 null
mime 类型
- 抛出:
nullpointerexception
- 如果 type
参数为 null
- 另请参见:
getcontenttype()