会员可以在此提问,百战程序员老师有问必答
对大家有帮助的问答会被标记为“推荐”
看完课程过来浏览一下别人提的问题,会帮你学得更全面
截止目前,同学们一共提了 132808个问题

把propertis文件放进src里了,

8KUE(U7NE([[HUK4JCLV~ZN.pngYZ@K@PK%24}@BIIKTV90GUV.png

package com.bjsxt;

import java.sql.Connection;
import java.sql.Statement;

public class JdbcTest {
    //向Departments表中添加一条数据
    public void insertDepartments(String department_name, int location_id) {
        Connection conn = null;
        Statement state = null;

        try {
           conn= JdbcUtil.getConnection();
            String sql = "insert into departments values(default,'" + department_name + "'," + location_id + ")";
            state = conn.createStatement();
            int flag = state.executeUpdate(sql);
            System.out.println(flag);
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
               JdbcUtil.closeResource(state,conn);
            }
        }

        //更新departments表中的department_id为6的数据,将部门名称改为教学部,location_id改为6
        public void updateDepartments(String department_name,int location_id, int department_id){
            Connection conn = null;
            Statement state = null;
            try {
                conn= JdbcUtil.getConnection();
                state = conn.createStatement();
                String sql="update departments d set d.department_name='"+department_name+"',d.location_id="+location_id+" where d.department_id="+department_id;

                int flag=state.executeUpdate(sql);
                System.out.println(flag);
                } catch (Exception e) {
                 e.printStackTrace();

                 } finally {
                     JdbcUtil.closeResource(state,conn);
                    }

                }
        public static void main (String[]args){
            JdbcTest test = new JdbcTest();
            test.insertDepartments("教学部", 9);
            //test.updateDepartments("研发部",1,1);
        }
    }
package com.bjsxt;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ResourceBundle;

/*
jdbc工具类
 */
public class JdbcUtil {
    private static String driver;
    private static String jdbcUrl;
    private static String username;
    private static String userpassword;

    static{
        //读取Properties文件
        ResourceBundle bundle=ResourceBundle.getBundle("jdbc");
        driver=bundle.getString("driver");
        jdbcUrl=bundle.getString("jdbcUrl");
        username=bundle.getString("username");
        userpassword=bundle.getString("userpassword");
        try {
            Class.forName(driver);
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        }
    }

    //获取Connection对象
    public static Connection getConnection(){
        Connection conn=null;
        try {
           conn= DriverManager.getConnection(jdbcUrl,username, userpassword);
        } catch (SQLException e) {
            e.printStackTrace();
        }
        return conn;
    }
    //关闭Statement
    public static void closeStatement(Statement state){
            try {
                if(state !=null) {
                    state.close();
                }
            } catch (SQLException e) {
                e.printStackTrace();

        }
    }
    //关闭Connection
    public static void closeConnection(Connection conn){
        try {
            if(conn !=null) {
                conn.close();
            }
        } catch (SQLException e) {
            e.printStackTrace();

        }
    }
    //关闭资源
    public static void closeResource(Statement state,Connection conn){
            closeStatement(state);
            closeConnection(conn);
    }
}
jdbc.driver=com.mysql.jdbc.Driver;
jdbc.jdbcUrl=jdbc:mysql://localhost:3306/bjsxt?useUnicode=true&characterEncoding=utf-8;
jdbc.username=root;
jdbc.userpassword=root;


JAVA 全系列/第三阶段:数据库编程/JDBC技术(旧) 19846楼
Python 全系列/第一阶段:Python入门/面向对象 19847楼
JAVA 全系列/第一阶段:JAVA 快速入门/飞机大战小项目训练 19848楼
JAVA 全系列/第六阶段:项目管理与SSM框架/Mybatis 19849楼

老师你好,我这个为什么前面输出的是编码,后面就是乱码了?图片我是在网上随便找了一张

package yx.sudayIo;

import java.io.*;

public class FirstDemo {
    public static void main(String[] args) throws IOException {
        FileInputStream fis = null;
            try {
                fis = new FileInputStream("/Users/yangxi/Desktop/zx.png");
                StringBuffer sb = new StringBuffer();
                int temp;
                while ((temp = fis.read()) != -1){
                    System.out.println(temp);
                    sb.append((char)temp);
                }
                System.out.println(sb.toString());
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            }finally {
                try {
                    if(fis != null){
                        fis.close();
                    }
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
    }
}

image.png

JAVA 全系列/第二阶段:JAVA 基础深化和提高/IO 流技术(旧) 19850楼
Python 全系列/第二阶段:Python 深入与提高/GUI编程(隐藏) 19851楼

vue-egoshop.zip

老师,我弄上reload之后,没办法自动刷新,得需要手动刷新,还会出现下面这个错误

image.png

WEB前端全系列/第二十阶段:Vue2企业级项目(旧)/Ego商城高级Vue实战项目 19852楼
Python 全系列/第二阶段:Python 深入与提高/GUI编程(隐藏) 19857楼
微服务/第一阶段:SSM 框架和项目开发/(旧)Mybatis 19859楼
JAVA 全系列/(旧的隐藏)第二十一阶段:百战商城项目(Spring Cloud最新架构)/百战商城项目 19860楼

课程分类

百战程序员微信公众号

百战程序员微信小程序

©2014-2025百战汇智(北京)科技有限公司 All Rights Reserved 北京亦庄经济开发区科创十四街 赛蒂国际工业园
网站维护:百战汇智(北京)科技有限公司
京公网安备 11011402011233号    京ICP备18060230号-3    营业执照    经营许可证:京B2-20212637