📄 files4icreadersys.java
字号:
package com.frontMachine.server;
import java.io.File;
import com.frontMachine.client.DownloadType;
import com.frontMachine.util.ExceptionLoger;
/**
* @IC读写器系统程序的更新目录
* @author LRT
* @version 1.0
*/
public class Files4ICReaderSys extends Files4Download
{
protected static Files4ICReaderSys file4ICRDInstance;
private Files4ICReaderSys()
{
dlpath = "./ICReaderDownload";
dldir=new File(dlpath);
downloadType = DownloadType.DOWNLOADTYPE_ICREADER;
/*try
{
System.out.println("The Directory For Download: "+dldir.getCanonicalPath());
}
catch(Exception e){}*/
this.reflashDIR();
}
public static synchronized Files4ICReaderSys getInstance()
{
try
{
if(file4ICRDInstance == null)
{
file4ICRDInstance = new Files4ICReaderSys();
}
}
catch (Exception e)
{
ExceptionLoger.ExLog(e);
}
return file4ICRDInstance;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -