09 2021 档案
摘要:一、ArrayList import java.util.*; public class Test{ public static void main(String[] args) { List<String> list=new ArrayList<String>(); list.add("Hello
阅读全文
摘要:1.pom依赖包 <!--easypoi包是excel导入导出需要--> <dependency> <groupId>cn.afterturn</groupId> <artifactId>easypoi-base</artifactId> <version>3.2.0</version> </dep
阅读全文
摘要:1.依赖pom文件 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instan
阅读全文
摘要:-- 复制student表到student_new表中包括结构和数据 CREATE TABLE student_new AS SELECT * from student -- 复制student表到student_new1只复制表结构 CREATE TABLE student_new1 as SEL
阅读全文
摘要://StringBuffer和StringBuider的使用 StringBuffer stringBuffer=new StringBuffer(); //append拼接 stringBuffer.append("abc"); System.out.println(stringBuffer);
阅读全文