📄 jpcanywherecontrolled.java
字号:
package org.jstudio.tools.pcanywhere;
/**
* <p>Title:服务器端程序 </p>
*/
public class JPcAnyWhereControlled {
private static JPcAnyWhereControlled client = null ;
ControlledReceiver receiver ;
private JPcAnyWhereControlled(){
try {
receiver = new ControlledReceiver(); //开启客户端服务
}
catch (Exception e) {
}
}
public static void start(){
if(client==null){
client = new JPcAnyWhereControlled();
}
}
public static JPcAnyWhereControlled getClient() {
if (client == null) {
start();
}
return client;
}
public ControlledReceiver getReceiver(){
return receiver ;
}
public static void main(String[] args){
JPcAnyWhereControlled.start();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -