📄 test.java
字号:
package lizhx.app;
import lizhx.test.*;
import lizhx.test.dao.*;
public class Test {
public static void main(String args[])
{
try
{
_RootDAO.initialize();
PersonDAO persondao = new PersonDAO();
Person person = new Person();
person.setName("Lizhx");
person.setSex("M");
person.setAddress("http://Java.lizhx.net.cn");
persondao.save(person);
}
catch(Exception e)
{
e.printStackTrace();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -