本文整理汇总了Java中javax.swing.text.EditorKit.read方法的典型用法代码示例。如果您正苦于以下问题:Java EditorKit.read方法的具体用法?Java EditorKit.read怎么用?Java EditorKit.read使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.swing.text.EditorKit
的用法示例。
在下文中一共展示了EditorKit.read方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: loadFromStreamToKit
import javax.swing.text.EditorKit; //导入方法依赖的package包/类
@Override
protected void loadFromStreamToKit(StyledDocument doc, InputStream stream, EditorKit kit) throws IOException, BadLocationException {
if (guardedEditor == null) {
guardedEditor = new FormGEditor();
GuardedSectionsFactory gFactory = GuardedSectionsFactory.find("text/x-java");
if (gFactory != null) {
guardedProvider = gFactory.create(guardedEditor);
}
}
if (guardedProvider != null) {
guardedEditor.doc = doc;
Charset c = FileEncodingQuery.getEncoding(this.getDataObject().getPrimaryFile());
Reader reader = guardedProvider.createGuardedReader(stream, c);
try {
kit.read(reader, doc, 0);
} finally {
reader.close();
}
} else {
super.loadFromStreamToKit(doc, stream, kit);
}
}
示例2: loadFromStreamToKit
import javax.swing.text.EditorKit; //导入方法依赖的package包/类
@Override
protected void loadFromStreamToKit(StyledDocument doc, InputStream stream, EditorKit kit)
throws IOException, BadLocationException {
if (guardedEditor == null) {
guardedEditor = new BIGES();
GuardedSectionsFactory gFactory = GuardedSectionsFactory.find(((DataEditorSupport.Env) env).getMimeType());
if (gFactory != null) {
guardedProvider = gFactory.create(guardedEditor);
}
}
if (guardedProvider != null) {
guardedEditor.doc = doc;
Charset c = FileEncodingQuery.getEncoding(this.getDataObject().getPrimaryFile());
Reader reader = guardedProvider.createGuardedReader(stream, c);
try {
kit.read(reader, doc, 0);
} finally {
reader.close();
}
} else {
super.loadFromStreamToKit(doc, stream, kit);
}
}
示例3: loadFromStreamToKit
import javax.swing.text.EditorKit; //导入方法依赖的package包/类
@Override
protected void loadFromStreamToKit(StyledDocument doc, InputStream stream, EditorKit kit) throws IOException, BadLocationException {
if (guardedEditor == null) {
guardedEditor = new FormGEditor();
GuardedSectionsFactory gFactory = GuardedSectionsFactory.find(((DataEditorSupport.Env) env).getMimeType());
if (gFactory != null) {
guardedProvider = gFactory.create(guardedEditor);
}
}
if (guardedProvider != null) {
guardedEditor.doc = doc;
Charset c = FileEncodingQuery.getEncoding(this.getDataObject().getPrimaryFile());
Reader reader = guardedProvider.createGuardedReader(stream, c);
try {
kit.read(reader, doc, 0);
} finally {
reader.close();
}
} else {
super.loadFromStreamToKit(doc, stream, kit);
}
}
示例4: loadFromStreamToKit
import javax.swing.text.EditorKit; //导入方法依赖的package包/类
/**
* Reads the file from the stream, filter the guarded section
* comments, and mark the sections in the editor. Overrides superclass method.
* @param document the document to read into
* @param inputStream the open stream to read from
* @param editorKit the associated editor kit
* @throws <code>IOException</code> if there was a problem reading the file
* @throws <code>BadLocationException</code> should not normally be thrown
* @see #saveFromKitToStream
*/
@Override
protected void loadFromStreamToKit(StyledDocument document, InputStream inputStream, EditorKit editorKit) throws IOException, BadLocationException {
final Charset c = getCharset();
final Reader reader = new BufferedReader(new InputStreamReader(inputStream, c));
try {
editorKit.read(reader, document, 0);
} finally {
reader.close();
}
}
示例5: rtf2html
import javax.swing.text.EditorKit; //导入方法依赖的package包/类
public String rtf2html(final String rtf) {
final JEditorPane p = new JEditorPane();
p.setContentType("text/rtf");
final EditorKit kitRtf = p.getEditorKitForContentType("text/rtf");
try {
kitRtf.read(new StringReader(rtf), p.getDocument(), 0);
final Writer writer = new StringWriter();
final EditorKit editorKitForContentType = p.getEditorKitForContentType("text/html");
editorKitForContentType.write(writer, p.getDocument(), 0, p.getDocument().getLength());
return writer.toString();
} catch (IOException | BadLocationException e) {
throw new RTF2HTMLException("Could not convert RTF to HTML.", e);
}
}
示例6: loadFromStreamToKit
import javax.swing.text.EditorKit; //导入方法依赖的package包/类
protected void loadFromStreamToKit(StyledDocument doc, InputStream stream, EditorKit kit)
throws IOException, BadLocationException {
Editor.this.doc = doc;
kit.read(stream, doc, 0);
}
示例7: loadFromStreamToKit
import javax.swing.text.EditorKit; //导入方法依赖的package包/类
@Override
protected void loadFromStreamToKit(StyledDocument doc, InputStream stream, EditorKit kit) throws IOException, BadLocationException {
kit.read(new InputStreamReader(stream, charset), doc, 0);
}
示例8: loadFromStreamToKit
import javax.swing.text.EditorKit; //导入方法依赖的package包/类
protected void loadFromStreamToKit(StyledDocument doc, InputStream stream, EditorKit kit)
throws IOException, BadLocationException {
kit.read(new InputStreamReader(stream, dObj.getEncodingHelper().getEncoding()), doc, 0);
}
示例9: getReaderFromKit
import javax.swing.text.EditorKit; //导入方法依赖的package包/类
/** @return The reader or <code>null</code>. */
private Reader getReaderFromKit(File file, FileObject fo, String mimeType) throws FileNotFoundException {
EditorKit kit = CloneableEditorSupport.getEditorKit(mimeType);
if (kit.getContentType().equalsIgnoreCase("text/plain") && "text/x-dtd".equalsIgnoreCase(mimeType)) {
// Use XML kit for DTDs if not defined otherwise
kit = CloneableEditorSupport.getEditorKit("text/xml");
}
//System.out.println(" KIT for "+mimeType+" = "+kit);
if (kit != null) {
Document doc = kit.createDefaultDocument();
InputStream stream = null;
try {
if (file != null) {
stream = new FileInputStream(file);
} else {
stream = fo.getInputStream();
}
kit.read(stream, doc, 0);
String text = doc.getText(0, doc.getLength());
//System.out.println(" TEXT = "+text);
doc = null; // Release it, we have the text
return new StringReader(text);
} catch (IOException ioex) {
FileNotFoundException fnfex;
if (file != null) {
fnfex = new FileNotFoundException("Can not read file "+file.getAbsolutePath());
} else {
fnfex = new FileNotFoundException("Can not read file "+fo);
}
fnfex.initCause(ioex);
throw fnfex;
} catch (BadLocationException blex) { // Something wrong???
ErrorManager.getDefault().notify(blex);
} finally {
if (stream != null) {
try { stream.close(); } catch (IOException e) {}
}
}
}
return null;
}