摘要:
1. 字符串有整型的相互转换 String a = String.valueOf(2); //integer to numeric string int i = Integer.parseInt(a); //numeric string to an int 2. 向文件末尾添加内容 Buffered 阅读全文
摘要:
文本区域: TextArea对象用于允许多行编辑的文本区域,可以设置为可编辑或者只读属性。 public TextArea();构建一个空文本区域。 public TextArea(int rows,int columns);构建一个行数为rows,列数为columns的空文本区域。 public 阅读全文
摘要:
根据学生表students建立一个女生表,包含所有信息。 create table girl as select * from students where sex=“女”; 视图操作: 建立一个只包括教师号,姓名和年龄的视图faculty(视图定义中不可以使用order by语句) createn 阅读全文