会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
zhuangjie
ZhuangJie
博客园
首页
新随笔
新文章
联系
管理
上一页
1
···
32
33
34
35
36
37
38
39
下一页
2020年12月29日
int与String互转
摘要: int转String:String.valueOf(intValue); #或intValue+"" String转int: Integer.valueOf(strValue);
阅读全文
posted @ 2020-12-29 15:52 zhuangjie
阅读(257)
评论(0)
推荐(0)
2020年12月28日
java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver 与 java.sql.SQLException: Listener refused the connection with the following error: 及”java连接oracle数据库“
摘要: 第一个java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver是没有导入ojdbc[x].ja文件。 第二个java.sql.SQLException: Listener refused the connection with
阅读全文
posted @ 2020-12-28 01:02 zhuangjie
阅读(1412)
评论(0)
推荐(0)
2020年12月26日
写得少做得多——jQuery
摘要: <!--总结1:1、初识 jQuery是一个js文件,下载后引用即可使用。 jQuery压缩包,有两个文件,压缩与未压缩的。未压缩在写代码时用的,当发布时用压缩的js文件。 jQuery的顶级对象: 我们知道DOM的顶级对象是document,BOM的顶级对象是window,而jQuery的顶级对象
阅读全文
posted @ 2020-12-26 14:24 zhuangjie
阅读(111)
评论(0)
推荐(0)
java中synchronized、Lock实现线程安全 #干货
摘要: 线程安全:由并行变为串行地执行某代码块 是否同步效率使用场景 线程安全 是 低 并发访问共享资源 非线程安全(出现并发问题) 否 高 吞吐量优先 用synchronized实现线程安全 package com.zjazn.toPage;public class DuoXX implements R
阅读全文
posted @ 2020-12-26 11:35 zhuangjie
阅读(228)
评论(0)
推荐(0)
2020年12月25日
java爬虫 案例
摘要: package com.zjazn; import com.sun.org.apache.bcel.internal.generic.RETURN; import com.sun.xml.internal.ws.api.server.InstanceResolver; import org.apac
阅读全文
posted @ 2020-12-25 13:09 zhuangjie
阅读(371)
评论(0)
推荐(0)
2020年12月23日
单词提取工具
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>单词提取工具</title> <link rel="shortcut icon" href="提取.ico" type="image/x-icon" /> <s
阅读全文
posted @ 2020-12-23 00:42 zhuangjie
阅读(223)
评论(0)
推荐(0)
2020年12月19日
Oracle的安装与用Navicat连接
摘要: 安装: 下载:(官网)https://www.oracle.com/cn/database/technologies/microsoft-windows.html 注意要下载这两个文件,且解压同一个文件夹中,即合并它们的database文件夹,合并完后,点击进入安装。 为了更好地了解安装流程,请前往
阅读全文
posted @ 2020-12-19 19:17 zhuangjie
阅读(317)
评论(0)
推荐(0)
2020年12月18日
java tomcat判定项目是否存在某个文件,没有则创建
摘要: 以所在项目为例: File file1 = new File(request.getSession().getServletContext().getRealPath("/")+"file"); if(! file1.exists()){ file1.mkdirs(); } request.getS
阅读全文
posted @ 2020-12-18 18:16 zhuangjie
阅读(250)
评论(0)
推荐(0)
2020年12月14日
Spring中无法使用注解@Resource
摘要: 需要javax.annotation.jar 到https://mvnrepository.com/artifact/javax.annotation/javax.annotation-api 下载指定jar导入
阅读全文
posted @ 2020-12-14 11:20 zhuangjie
阅读(1058)
评论(0)
推荐(0)
2020年12月11日
IDEA报Could not get JDBC Connection; nested exception is java.sql.SQLException: The server time zone value '�й���ʱ��' is unrecognized or represents more than one time zone.
摘要: 在url中添加: ...?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=UTC&rewriteBatchedStatements=true 感谢:https://blog.csdn
阅读全文
posted @ 2020-12-11 12:32 zhuangjie
阅读(274)
评论(0)
推荐(0)
上一页
1
···
32
33
34
35
36
37
38
39
下一页