2020年4月25日

多线程:Thread类和Runnable接口

摘要: 创建新执行线程的两种方法: 1.将类声明为 Thread 的子类。该子类应重写 Thread 类的 run 方法。创建对象,开启线程。run方法相当于其他线程的main方法。 public class MyThread extends Thread{ public void run() { for( 阅读全文

posted @ 2020-04-25 11:51 煎饼果子不要果子谢谢 阅读(166) 评论(0) 推荐(0) 编辑

2020年4月24日

IO流:properties类、打印流、序列化流和反序列化流

摘要: properties类: lload(InputStream) 把指定流所对应的文件中的数据,读取出来,保存到Propertie集合中 lload(Reader) l store(OutputStream,commonts)把集合中的数据,保存到指定的流所对应的文件中,参数commonts代表对描述 阅读全文

posted @ 2020-04-24 16:31 煎饼果子不要果子谢谢 阅读(119) 评论(0) 推荐(0) 编辑

使用properties类配置JDBC

摘要: Properties类代码: driver=com.mysql.jdbc.Driver url=jdbc:mysql://localhost:3306/Demo?characterEncoding=utf8 user=root password=123456 JDBCUtils代码: import 阅读全文

posted @ 2020-04-24 11:50 煎饼果子不要果子谢谢 阅读(247) 评论(0) 推荐(0) 编辑

2020年4月23日

LayUI中Layer弹窗/层组件的使用方法

摘要: layer组件的下载地址:layer.layui.com 1.在页面当中引入jQuery框架(1.8版本以上) 2.将下载包中的layer文件夹完整复制到项目中 3.引入layer目录中的layer.js 4.在需要的地方直接写效果代码 效果代码在https://layer.layui.com/上面 阅读全文

posted @ 2020-04-23 16:04 煎饼果子不要果子谢谢 阅读(382) 评论(0) 推荐(0) 编辑

2020年4月22日

IO流:缓冲流

摘要: 字节缓冲流根据流的方向,共有2个 写入数据到流中,字节缓冲输出流 BufferedOutputStream 读取流中的数据,字节缓冲输入流 BufferedInputStream BufferedOutputStream: 构造方法 public BufferedOutputStream(Outpu 阅读全文

posted @ 2020-04-22 15:42 煎饼果子不要果子谢谢 阅读(123) 评论(0) 推荐(0) 编辑

IO流:转换流

摘要: OutputStreamWriter类: public static void writeCN() throws Exception { //创建与文件关联的字节输出流对象 FileOutputStream fos = new FileOutputStream("c:\\cn8.txt"); //创 阅读全文

posted @ 2020-04-22 10:38 煎饼果子不要果子谢谢 阅读(113) 评论(0) 推荐(0) 编辑

2020年4月21日

IO流:字符流

摘要: 字符编码表: 能识别中文的码表:GNK,UTF-8; 对我们开发而言常见的码表:GBK UTF-8 ISO-8859-1 文字 >(数字) :编码。 “abc”.getBytes() byte[] (数字) >文字 : 解码。 byte[] b={97,98,99} new String(b,0,l 阅读全文

posted @ 2020-04-21 16:14 煎饼果子不要果子谢谢 阅读(139) 评论(0) 推荐(0) 编辑

IO流:字节流复制视频

摘要: 字节流: 字节输出流:OutputStream OutputStream有很多子类,其中子类FileOutputStream可用来写入数据到文件。 FileOutputStream类,即文件输出流,是用于将数据写入 File的输出流。 FileOutputStream(String name):创建 阅读全文

posted @ 2020-04-21 11:48 煎饼果子不要果子谢谢 阅读(259) 评论(0) 推荐(0) 编辑

2020年4月20日

不用框架实现简单的日志功能

摘要: 在学习Java的初期阶段,制作一些小的练手项目时,在没有接触过日志框架的情况下实现简单的日志记录功能 Dao层代码: //项目新增 public int addProject(Project project) throws SQLException{ Connection conn=JDBCUtil 阅读全文

posted @ 2020-04-20 16:38 煎饼果子不要果子谢谢 阅读(155) 评论(0) 推荐(0) 编辑

2020年4月7日

JDBC工具类

摘要: public class JDBCUtils { //获取connection对象 public static Connection getConn(){ Connection conn=null; try { Class.forName("com.mysql.jdbc.Driver"); Stri 阅读全文

posted @ 2020-04-07 17:52 煎饼果子不要果子谢谢 阅读(97) 评论(0) 推荐(0) 编辑

导航