logprocess.java
来自「这是有关于一个视频自动压缩系统的java+xml构建的代码」· Java 代码 · 共 63 行
JAVA
63 行
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 + =
减小字号Ctrl + -
显示快捷键?