java操作資料庫:增刪改查

来源:http://www.cnblogs.com/Vito-Yan/archive/2017/05/06/6815742.html
-Advertisement-
Play Games

不多bb了直接上。 工具:myeclipse 2016,mysql 5.7 目的:java操作資料庫增刪改查商品信息 test資料庫的goods表 gid主鍵,自增 1、實體類Goods:封裝資料庫數據(與資料庫表中各欄位相匹配的類) 2、實現類GoodsDao(不帶DBHelper):操作資料庫實 ...


不多bb了直接上。

工具:myeclipse 2016,mysql 5.7

目的:java操作資料庫增刪改查商品信息

test資料庫的goods表

gid主鍵,自增

1、實體類Goods:封裝資料庫數據(與資料庫表中各欄位相匹配的類)

// 實體類
public class Goods {
    private int gid;
    private String gname;
    private double gprice;
    private String gdate;
    //生成get、set方法
    public int getGid() {
        return gid;
    }
    public void setGid(int gid) {
        this.gid = gid;
    }
    public String getGname() {
        return gname;
    }
    public void setGname(String gname) {
        this.gname = gname;
    }
    public double getGprice() {
        return gprice;
    }
    public void setGprice(double gprice) {
        this.gprice = gprice;
    }
    public String getGdate() {
        return gdate;
    }
    public void setGdate(String gdate) {
        this.gdate = gdate;
    }
    //生成構造方法
    public Goods(int gid, String gname, double gprice, String gdate) {
        super();
        this.gid = gid;
        this.gname = gname;
        this.gprice = gprice;
        this.gdate = gdate;
    }
    //生成無參構造方法
    public Goods() {
        super();
    }
    
}

2、實現類GoodsDao(不帶DBHelper):操作資料庫實現增刪改查 

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Statement;
import java.util.Scanner;

public class GoodsDao {

    public static void main(String[] args) {
        GoodsDao dao = new GoodsDao();
//        dao.add();
        
//        dao.del();
        
//        dao.upd();
        Scanner input = new Scanner(System.in);
        
        System.out.println("請輸入商品名稱:");
        
        String name = input.next();
        
        System.out.println("請輸入商品價格:");
        
        double price = input.nextDouble();
        
        dao.newAdd(name, price);
        
        
//        System.out.println("請輸入最低價格:");
//        double price = input.nextDouble();
//        
//        dao.search(price);
//        
        System.out.println("已經成功完成操作!");
    }

    // 增數據
    public void add(){
        try{
            // 1.通過反射,載入驅動類到jvm
            Class.forName("com.mysql.jdbc.Driver");
            // 2.獲取資料庫連接對象
            Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/test?characterEncoding=utf8&useSSL=true","root","");
            // 3.創建資料庫操作對象
            Statement stmt = conn.createStatement();
            // 4.操作資料庫
            stmt.execute("insert into goods(gname,gprice,gdate) values('ggg','2.33',now())");
            
            //5.關閉各個資源
            stmt.close();
            conn.close();
            
        } catch(Exception e){
            e.printStackTrace();
        }
    }
    //刪數據
    public void del(){
        try{
            Class.forName("com.mysql.jdbc.Driver");
            Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/test?characterEncoding=utf8&useSSL=true","root","");
            
            Statement stmt = conn.createStatement();
            
            stmt.execute("delete from goods where gid=1");
            
            stmt.close();
            conn.close();
            
        } catch(Exception e){
            e.printStackTrace();
        }
    }
    //改數據
    public void upd(){
        try{
            Class.forName("com.mysql.jdbc.Driver");
            Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/test?characterEncoding=utf8&useSSL=true","root","");
            
            Statement stmt = conn.createStatement();
            stmt.execute("update goods set gname='ggg' where gid=1 ");
            
            stmt.close();
            conn.close();
            
        } catch(Exception e){
            e.printStackTrace();
        }
    }
    //查數據
    public void search(double price){
        try{
            Class.forName("com.mysql.jdbc.Driver");
            Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/test?characterEncoding=utf8&useSSL=true","root","");
            
            Statement stmt = conn.createStatement();
            // 結果集對象
            ResultSet rs = stmt.executeQuery("select * from goods where gprice>"+price);
            
            while(rs.next()){
                System.out.println(rs.getString(1)+"#"+rs.getString("gname")+"#"+rs.getDouble("gprice")+"#"+rs.getString("gdate"));
            }
            
            rs.close();
            stmt.close();
            conn.close();
            
        } catch(Exception e){
            e.printStackTrace();
        }
    }
    
    //用拼字元串的方法增數據    
    public void newAdd(String gname, double gprice){
        try{
            Class.forName("com.mysql.jdbc.Driver");
            Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/test?characterEncoding=utf8&useSSL=true","root","");
            
//            Statement stmt = conn.createStatement();
//            
//            stmt.execute("insert into goods(gname, gprice,gdate) values('"+gname+"','"+gprice+"',now())");
//            
//            stmt.close();
            //拼字元串更簡單
            String sql = "insert into goods(gname, gprice, gdate) values(?,?,now())";
            
            PreparedStatement pstmt = conn.prepareStatement(sql);
            
            pstmt.setString(1, gname);
            pstmt.setDouble(2, gprice);
            
            pstmt.execute();
            
            conn.close();
        } catch(Exception e){
            e.printStackTrace();
        }
    }
    
}

3、DBHelper類:解決上述代碼操作資料庫的重覆工作

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Statement;

/**
 * 獲取資料庫操作的連接對象
 * 關閉資料庫操作的各種資源
 * @author 晏先政
 *
 */
public class DBHelper {
    private static final String className = "com.mysql.jdbc.Driver";
    private static final String url = "jdbc:mysql://localhost:3306/test?characterEncoding=utf8&useSSL=true";
    private static final String uname = "root";
    private static final String upass = "";
    
    /**
     * 獲取資料庫連接對象的方法
     */
    public static Connection getConn(){
        Connection conn = null;
        try{
            Class.forName(className);
            conn = DriverManager.getConnection(url,uname, upass);
        } catch(Exception e){
            e.printStackTrace();
        }
        
        return conn;
    }
    
    /**
     * 關閉資料庫連接對象
     */
    public static void closeConn(Connection conn){
        try{
            if(conn!=null){
                conn.close();
            }
        } catch(Exception e){
            e.printStackTrace();
        }
    }
    
    /**
     * 關閉資料庫操作對象
     */
    public static void closeStmt(Statement stmt){
        try{
            if(stmt!=null){
                stmt.close();
            }
        } catch(Exception e){
            e.printStackTrace();
        }
    }

    /**
     * 關閉資料庫操作對象
     */
    public static void closePstmt(PreparedStatement pstmt){
        try{
            if(pstmt!=null){
                pstmt.close();
            }
        } catch(Exception e){
            e.printStackTrace();
        }
    }
    
    /**
     * 關閉資料庫操作對象
     */
    public static void closeRs(ResultSet rs){
        try{
            if(rs!=null){
                rs.close();
            }
        } catch(Exception e){
            e.printStackTrace();
        }
    }
}

4、實現類NewDao(帶DBHelper):操作資料庫實現增刪改查 

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class NewDao {

    public static void main(String[] args) {
        NewDao nd = new NewDao();
        nd.show();
//        Scanner input = new Scanner(System.in);        
//改數據
//        System.out.println("請輸入要修改的商品編號:");
//        int gid = input.nextInt();
//        System.out.println("請輸入要修改的商品名稱:");
//        String gname = input.next();
//        System.out.println("請輸入要修改的商品價格:");
//        double gprice = input.nextDouble();
//        
//        nd.upd(gid, gname, gprice);
        
        
//查數據        
//        System.out.println("請輸入最低價格:");
//        double mprice = input.nextDouble();
//        System.out.println("請輸入最高價格:");
//        double xprice = input.nextDouble();
//        
//        nd.search(mprice, xprice);
        
    }    
    private Connection conn = null;
    private PreparedStatement pstmt = null;
    private ResultSet rs = null;
//查數據    
    public void search(double minprice, double maxprice){
        try{
            conn = DBHelper.getConn();
            String sql = "select * from goods where gprice>=? and gprice<=?";
            // 預編譯的對象
            pstmt = conn.prepareStatement(sql);
            
            pstmt.setDouble(1, minprice);
            pstmt.setDouble(2, maxprice);
            
            rs = pstmt.executeQuery();
            while(rs.next()){
                System.out.println(rs.getString("gid")+"#"+rs.getString("gname")+"#"+rs.getString("gprice"));
            }
            
        } catch(Exception e){
            e.printStackTrace();
        } finally{
            DBHelper.closeRs(rs);
            DBHelper.closePstmt(pstmt);
            DBHelper.closeConn(conn);
        }
    }
    
//改數據
    public void upd(int gid , String gname, double gprice){
        try{
            conn = DBHelper.getConn();
            String sql = "update goods set gname=?, gprice=? where gid=?";
            
            pstmt = conn.prepareStatement(sql);
            pstmt.setString(1, gname);
            pstmt.setDouble(2, gprice);
            pstmt.setInt(3, gid);
            
            pstmt.execute();
            
        } catch(Exception e){
            e.printStackTrace();
        } finally{
            DBHelper.closePstmt(pstmt);
            DBHelper.closeConn(conn);
        }
    }
    
//用集合展示數據    
    public List<Goods> getAllGoods(){
        List<Goods> list = new ArrayList<Goods>();
        try{
            conn = DBHelper.getConn();
            
            String sql = "select * from goods";
            
            pstmt = conn.prepareStatement(sql);
            
            rs = pstmt.executeQuery();
            
            while(rs.next()){
                Goods goods = new Goods(rs.getInt("gid"),rs.getString("gname"),rs.getDouble("gprice"),rs.getString("gdate"));
                
                list.add(goods);
            }
            
        } catch(Exception e){
            e.printStackTrace();
        } finally{
            DBHelper.closeRs(rs);
            DBHelper.closePstmt(pstmt);
            DBHelper.closeConn(conn);
        }
        return list;
    }
    
    public void show(){
        List<Goods> list = getAllGoods();
        
        for(int i=0;i<list.size();i++){
            System.out.println(list.get(i).getGid()+"#"+list.get(i).getGname()+"#"+list.get(i).getGprice());
        }
    }
    
}

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • /// <summary> /// 加密 /// </summary> /// <param name="Text"></param> /// <returns></returns> public static string Encrypt(string Text) { return Encrypt ...
  • C 訪問修飾符 分類 C 訪問修飾符一共有五種,分別為private, internal, protected, protected internal, public。 它們都可以用來修飾類中的成員,如欄位,屬性,方法,事件等。對於修飾class,enum,struct,嵌套類,及其各自預設修飾符的 ...
  • 重放攻擊 重放攻擊是指黑客通過抓包的方式,得到客戶端的請求數據及請求連接,重覆的向伺服器發送請求的行為。 比如你有一個 “購買” 的操作,當你點擊購買按鈕時,向伺服器發送購買的請求。而這時黑客對你的請求進行了抓包,得到了你的傳輸數據。 因為你填寫的都是真實有效的數據,是可以購買成功的,因此他不用做任 ...
  • .NET Core 2.0預覽版及.NET Standard 2.0 Preview 這個月也就要發佈了。 具體相關信息可以查看之前的文章 ".NET Core 2.0及.NET Standard 2.0" 。 今天來實際體驗.NET Core 2.0,正式版發佈還需要一段時間。 .NET Core ...
  • 詳情見:cookie與session的區別與聯繫 ...
  • csrf攻擊,即cross site request forgery跨站(功能變數名稱)請求偽造,這裡的forgery就是偽造的意思。網上有很多關於csrf的介紹,比如一位前輩的文章淺談CSRF攻擊方式,參考這篇文章簡單解釋下:csrf 攻擊能夠實現依賴於這樣一個簡單的事實:我們在用瀏覽器瀏覽網頁時通常會打 ...
  • 那些網上說的JDK什麼的的問題,我求你們不要誤人子弟好嗎? 出現在這個的原因就是ADT也就是你的SDK manager 的Tools版本跟你的SDK版本不相容,如果你的是SDK 23.0.2那你的Tools 時版本也要是這個,如果你實在不會,那就把所有的Tools全部下載下來就可以的 ...
  • 本文為博主辛苦總結,希望自己以後返回來看的時候理解更深刻,也希望可以起到幫助初學者的作用. 轉載請註明 出自 : "luogg的博客園" 謝謝配合! 當資料庫欄位和實體bean中屬性不一致時 之前資料庫Person名字欄位是name,PersonBean中屬性也是name,但是之後資料庫中修改為了u ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...