今週は、まず Java の上級知識をいったん終了し、データベースの学習に入りました:
Java の上級部分:
1. マルチスレッド: スレッドの同時実行性 (複数のスレッドが共有変数を操作する) ize( 同時スレッドの安全性、ロック可能なオブジェクトとメソッド)、待機、通知(悲観的)デッドロック、待機、Notify、NotifyAll;プロパティ名 ":「プロパティ値」}}、「要素2」...]
jsonプラグイン:-json-lib
-gson-jackson
-fastjson-alibaba
; 5それを操作するためのデータベースとNAVICATグラフィックツール3.システムとMySQL Commonコマンド
システムコマンド(管理者として実行)and: - Show Database Instance show Database;
unsigned: 非記号を設定します (列の値を負にすることはできません)
zerofill: ゼロ充填列を設定します (列のデータ長が定義された長さ未満の場合、値の前に 0 が追加されます)
4.SQL ステートメント:
(テーブル構造の表示)、変更、削除 DCL (データベース制御言語: 権限の制御) 取り消し、許可
5. (整合性条件) 制約: 1. 主キー制約
2. 外部キー制約
3. Not null 制約
5. チェック制約 (mysql はまだサポートされていません) 6. データ型と演算子
.Query (強調): SELECT クエリ列 1、クエリ列 2、... ROUP BY 列名] |DESC]
【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 中国語 Web サイトの他の関連記事を参照してください。