📄 logprocess.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 + -