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

📄 rtffileexport.java

📁 Memoranda( 从前以jNotes2而闻名) 是一个日志管理和个人项目管理工具
💻 JAVA
字号:
/** * RTFFileExport.java * Created on 25.02.2003, 17:55:08 Alex * Package: net.sf.memoranda.ui *  * @author Alex V. Alishevskikh, alex@openmechanics.net * Copyright (c) 2003 Memoranda Team. http://memoranda.sf.net */package net.sf.memoranda.util;import java.io.File;import java.io.FileOutputStream;import javax.swing.text.DefaultStyledDocument;import javax.swing.text.Document;import javax.swing.text.rtf.RTFEditorKit;/** *  *//*$Id: RTFFileExport.java,v 1.3 2004/01/30 12:17:42 alexeya Exp $*/public class RTFFileExport {    /**     * Constructor for RTFFileExport.     */    public RTFFileExport(File f, Document doc) {        RTFEditorKit kit = new RTFEditorKit();                try {                        kit.write(new FileOutputStream(f), (DefaultStyledDocument)doc, 0, doc.getLength());        }        catch (Exception ex) {            ex.printStackTrace();        }    }}

⌨️ 快捷键说明

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