会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
正在努力的girl
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
下一页
2021年7月30日
PYCharm导入sqlite3
摘要: 点击 菜单中的view 菜单。 进行点击了view菜单之后,进行点击下拉菜单选中为tool windows的选项。 弹出了下拉下一级菜单选中为 database 的选项。弹出了database的选项之后,进行点击 添加 按钮。 弹出了下拉菜单选中为data source后,选中为sqlite的选项。
阅读全文
posted @ 2021-07-30 11:33 正在努力的girl
阅读(712)
评论(0)
推荐(0)
2021年4月28日
解决Eclipse打开外部文件出现乱码问题
摘要: 点击“Project”--"Properties",在其中改变"Text file encoding"选项即可
阅读全文
posted @ 2021-04-28 15:53 正在努力的girl
阅读(138)
评论(0)
推荐(0)
2021年3月2日
idea 中导入jar包
摘要: 通过Modules的Dependencies添加 1.打开 File -> Project Structure (Ctrl + Shift + Alt + S) 2.单击 Modules -> Dependencies -> "+" -> "Jars or directories" 3.选择硬盘上的
阅读全文
posted @ 2021-03-02 14:47 正在努力的girl
阅读(148)
评论(0)
推荐(0)
2021年2月1日
朴素贝叶斯算法
摘要: 参考https://blog.csdn.net/sinat_30353259/article/details/80932111
阅读全文
posted @ 2021-02-01 21:47 正在努力的girl
阅读(35)
评论(0)
推荐(0)
2021年1月31日
JAVA基础知识
摘要: String s; 1将字符串转换为字符数组 char[] arr=s.toCharArray(); 2获取字符串长度 int length=s.length();
阅读全文
posted @ 2021-01-31 17:48 正在努力的girl
阅读(35)
评论(0)
推荐(0)
JAVA中如何获取一个二维数组的行数和列数
摘要: 假设函数的参数为一个二维数组 int[][] a; int rowNum=a.length; int colNum=0; if(rowNum>0){ colNum=a[0].length; } 总之 1.二维数组本质是一维数组,行数=数组名.length,列数=数组名[0].length; 2.列数
阅读全文
posted @ 2021-01-31 17:18 正在努力的girl
阅读(2366)
评论(0)
推荐(0)
2020年10月31日
dbinfo
摘要: #mysql jdbc.driver=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql://127.0.0.1:3306/users?useUnicode=true&characterEncoding=UTF-8 jdbc.username=root jdbc.pa
阅读全文
posted @ 2020-10-31 15:10 正在努力的girl
阅读(124)
评论(0)
推荐(0)
2020年10月17日
力扣-数组「动态和」的计算公式为:runningSum[i] = sum(nums[0]…nums[i])
摘要: class Solution { public int[] runningSum(int[] nums) { int i,j,temp=0; int[] rtnums=new int[nums.length]; for(i=0;i<nums.length;i++){ for(j=0;j<=i;j++
阅读全文
posted @ 2020-10-17 19:23 正在努力的girl
阅读(739)
评论(0)
推荐(0)
2020年9月28日
Python PyInstaller安装以及报错的解决办法
摘要: Windows+R,输入cmd打开命令行 在命令行中输入pip install pyinstaller 运行命令之后如果安装成功那么会出现:Successfully installed pyinstaller-x.x.x 如果报错:WARNING: You are using pip version
阅读全文
posted @ 2020-09-28 17:25 正在努力的girl
阅读(906)
评论(0)
推荐(0)
2020年8月28日
Tomct启动报错Port 8080 required by Tomcat v9.0 Server at localhost is already in use. The server may already be running in another process, or a system process may be using the port. To start
摘要: 问题描述 这种情况是由于端口被占用,需要找到是哪个程序占用了端口。 解决方案 1.打开cmd命令(windows+R-->输入cmd) 2.输入如下命令 netstat -ano|findstr 8080和netstat -ano|findstr 8005可以查看是哪个任务使用了这两个端口 比如 可
阅读全文
posted @ 2020-08-28 21:41 正在努力的girl
阅读(864)
评论(0)
推荐(0)
上一页
1
2
3
4
下一页
公告