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

📄 logprocess.java

📁 这是有关于一个视频自动压缩系统的java+xml构建的代码
💻 JAVA
字号:
package autoencodeinfinit;import autoencodeinfinit.XMLProcess.*;/** * LogProcess provide some function to manage the log file * @author ulysess */public class LogProcess {    private String Direct = "./Log";    XMLProcess Logfile = null;    /**     * Constructor:General create a logfile in the ./Log directory      */    public LogProcess() {            }        /**     * Creating a new log file in the location Direct and use the file name      * "FileName"     * @param FileName Specify the log file name     * @return Whether successful create logfile     */    public boolean createLog(String FileName) {        return true;    }        /**     * Flush data into file     * @return     */    public boolean flushLog() {        return true;    }         /**     * Appending a new element into the log file     */    public void appendLog() {            }        /**     * Archive the log file     * @return      */    public boolean archiveLogFile () {        return true;    }        /**     * Set the directory of log file saved     * @return     */    public boolean setLogDirectory() {        return true;    }        }

⌨️ 快捷键说明

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