📄 testmidlet.java
字号:
/*
* TestMidlet.java
*
* Created on 2006年2月15日, 下午8:12
*/
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
/**
*
* @author Administrator
* @version
*/
public class TestMidlet extends MIDlet {
public void startApp() {
Form f = new Form("TestSecurity");
Display.getDisplay(this).setCurrent(f);
HttpsCertificate hc = new HttpsCertificate(f);
hc.getSecurityInfo();
}
public void pauseApp() {
}
public void destroyApp(boolean unconditional) {
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -