摘要: from file_reader import * from Record import * from pyecharts.charts import Bar from pyecharts.options import * from pyecharts.globals import ThemeTyp 阅读全文
posted @ 2023-03-07 21:47 樱花开到我身边 阅读(19) 评论(0) 推荐(0)
摘要: 08每周总结 发表时间:23.4.12 这周学会了用python连接数据库,代码如下 from pymysql import Connection conn=Connection( host="localhost", port=3306, user="root", password="1234" ) 阅读全文
posted @ 2023-03-06 20:44 樱花开到我身边 阅读(19) 评论(0) 推荐(0)
摘要: 2023年3月6日,list长度未和length进行比较,加一条if语句判断长度不等,把list.length赋给length,加1分 阅读全文
posted @ 2023-03-06 18:05 樱花开到我身边 阅读(16) 评论(0) 推荐(0)
摘要: public class test_a { public static void main(String[] args) throws IOException { String path = "F:/piao.txt"; FileInputStream fis = new FileInputStre 阅读全文
posted @ 2023-03-05 18:33 樱花开到我身边 阅读(16) 评论(0) 推荐(0)
摘要: 07每周总结 发表时间:23.4.5 这周学会了安卓checkbox的用法,用法代码如下。 package com.dongnaoedu.chapter05; import androidx.appcompat.app.AppCompatActivity; import android.os.Bun 阅读全文
posted @ 2023-03-03 21:39 樱花开到我身边 阅读(16) 评论(0) 推荐(0)
摘要: 06每周总结 发表时间:23.3.28 这周学习了安卓开发中的日期框的使用,代码如下。 package com.dongnaoedu.chapter05; import androidx.appcompat.app.AppCompatActivity; import android.app.Date 阅读全文
posted @ 2023-03-03 21:38 樱花开到我身边 阅读(19) 评论(0) 推荐(0)
摘要: 05个人总结 发表时间:23.3.21 这周我学会了安卓如何进行数据共享,android数据进行共享的代码如下package com.dongnaoedu.chapter04; import androidx.appcompat.app.AppCompatActivity; import andro 阅读全文
posted @ 2023-03-01 19:49 樱花开到我身边 阅读(17) 评论(0) 推荐(0)
摘要: 04个人总结 发表时间:23.3.14 这周我学习了android按钮的使用,对于按钮的使用有了详细的了解package com.dongnaoedu.chapter03; import androidx.appcompat.app.AppCompatActivity; import android 阅读全文
posted @ 2023-02-28 23:02 樱花开到我身边 阅读(17) 评论(0) 推荐(0)
摘要: package com.itheima.pojo; public class Brand { // id 主键 private Integer id; // 品牌名称 private String brandName; // 企业名称 private String companyName; // 排 阅读全文
posted @ 2023-02-27 21:47 樱花开到我身边 阅读(19) 评论(0) 推荐(0)
摘要: package com.itheima.mapper; import com.itheima.pojo.Brand; import org.apache.ibatis.annotations.*; import java.util.List; public interface BrandMapper 阅读全文
posted @ 2023-02-24 21:39 樱花开到我身边 阅读(17) 评论(0) 推荐(0)