이번 주에 우리는 먼저 Java에 대한 고급 지식을 일시적으로 종료하고 데이터베이스 연구에 들어갔습니다.
Java의 고급 부분:
1. 멀티 스레딩: 스레드 동시성(여러 스레드가 공유 변수를 작동함) ize( 동시 스레드 안전성); , 잠글 수 있는 개체 및 메서드), wait, inform
(비관적) 교착 상태, wait, inform, informAll; 이 정보의 n 복사본을 만들어 모든 시스템에 보내는 책임)
~ > 속성 이름":"속성 값"}
> ~ > (mysql5. 5 데이터베이스 및 navicat 그래픽 도구를 사용하여 작동)
3. 시스템 및 mysql 공통 명령
시스템 명령(관리자 권한으로 실행)
: #서비스 시작
> ~ > 비밀번호 ~ ~ ~ >
: --데이터베이스 인스턴스 표시
데이터베이스 표시; ~ ~ 테이블 표시; SQL 문 t Auto_increment: 기본 키 열과 비어 있지 않은 고유 열에 사용할 수 있는 자체 증가를 설정합니다. : 기호가 아닌 설정 (컬럼 값은 음수가 될 수 없음)
zerofill : 0 채우기 설정 컬럼 (컬럼 데이터 길이가 정의된 길이보다 작을 경우 값 앞에 0이 추가됨)
4.SQL 문:
(테이블 구조 보기), 변경, 삭제 DCL(데이터베이스 제어 언어: 제어 권한) 취소, 부여 5. (무결성 조건) 제약 조건: 1. 기본 키 제약 조건
2. 외래 키 제약 조건
3. Not null 제약 조건
4. Unique 제약 조건
7. 쿼리(강조): 쿼리 열 1, 쿼리 열 2,... ROUP BY 열 이름] ~ |
【LIMIT [偏移行,]记录行数】
单表查询:模糊查询(“%”,“_”),聚合函数
多表查询:等值连接,外连接
mysql函数的使用。
import java.io.Serializable; /** * 工作详情类 * @author NIUXUYUAN */ public class Jobs implements Serializable{ /** * */ private static final long serialVersionUID = 1L; private String id; //id private String experience; //工作经验 private String city; //工作地点 private String industry; //行业 private String detail; //工作详情 private String company; //公司 private String jobname; //职位 public Jobs(String id, String experience, String city, String industry, String detail, String company, String jobname) { super(); this.id = id; this.experience = experience; this.city = city; this.industry = industry; this.detail = detail; this.company = company; this.jobname = jobname; } @Override public String toString() { return "Jobs [id=" + id + ", experience=" + experience + ", city=" + city + ", industry=" + industry + ", detail=" + detail + ", company=" + company + ", jobname=" + jobname + "]"; } public String toString(int i) { return experience+city+industry+detail+company+jobname; } public Jobs() { // TODO Auto-generated constructor stub } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getExperience() { return experience; } public void setExperience(String experience) { this.experience = experience; } public String getCity() { return city; } public void setCity(String city) { this.city = city; } public String getIndustry() { return industry; } public void setIndustry(String industry) { this.industry = industry; } public String getDetail() { return detail; } public void setDetail(String detail) { this.detail = detail; } public String getCompany() { return company; } public void setCompany(String company) { this.company = company; } public String getJobname() { return jobname; } public void setJobname(String jobname) { this.jobname = jobname; } }
import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStreamReader; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.util.ArrayList; import java.util.List; public class AddJobs { static List<Jobs> list = new ArrayList<>(); File file = new File("jobs"); /** * 输入数据 * @throws IOException */ public void input() throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); System.out.println("以id/experience/education/city/industry/detail/company/jobname格式填入:"); String msg = ""; while(!(msg = br.readLine()).equalsIgnoreCase("quit")) { add(msg); } br.close(); } /** * 将数据变为Jobs对象存入list集合 * @param msg */ private void add(String msg) { String[] s = msg.split("/"); Jobs job = new Jobs(s[0], s[1], s[2], s[3], s[4], s[5], s[6]); list.add(job); } private void checkFile() throws FileNotFoundException, IOException, ClassNotFoundException { if(file.length()>0) { ObjectInputStream ois = new ObjectInputStream(new FileInputStream(file)); List<Jobs> temp = (List<Jobs>)ois.readObject(); if(temp!=null) { list.clear(); for(Jobs t:temp) { list.add(t); } } ois.close(); } } public static void main(String[] args) throws FileNotFoundException, IOException, ClassNotFoundException { AddJobs aj = new AddJobs(); if(!aj.file.exists()) { aj.file.createNewFile(); } aj.checkFile(); aj.input(); ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(aj.file)); oos.writeObject(list); oos.close(); } }
import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStreamReader; import java.io.ObjectInputStream; import java.util.ArrayList; import java.util.List; public class Query { static List<Jobs> list = new ArrayList<>(); File file = new File("jobs"); /** * 查看file文件,将数据导入list集合 * @throws FileNotFoundException * @throws IOException * @throws ClassNotFoundException */ private void checkFile() throws FileNotFoundException, IOException, ClassNotFoundException { if(file.length()>0) { ObjectInputStream ois = new ObjectInputStream(new FileInputStream(file)); List<Jobs> temp = (List<Jobs>)ois.readObject(); if(temp!=null) { list.clear(); for(Jobs t:temp) { list.add(t); } } ois.close(); } } public void check() throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); System.out.println("请输入experience/education/city/industry/detail/company/jobname的某些信息"); String msg = br.readLine(); String[] s = msg.split("/"); String regex = ""; for (String str : s) { regex += "[\\s\\S]*" + str + "[\\s\\S]*"; } List<Jobs> temp = new ArrayList<>(); for (Jobs j : list) { msg = j.toString(1); if(msg.matches(regex)) { temp.add(j); } } System.out.println("结果"); for (Jobs jobs : temp) { System.out.println(jobs); } } public static void main(String[] args) throws FileNotFoundException, ClassNotFoundException, IOException { Query q = new Query(); q.checkFile(); q.check(); } }
相关文章:
위 내용은 JAVA를 이용한 데이터베이스 부분 지식 연산 코드의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!