上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页
摘要: https://blog.csdn.net/csdnnews/article/details/103154693 阅读全文
posted @ 2019-11-27 10:46 zdcsmart 阅读(84) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/KKKoyomi/article/details/89063320 阅读全文
posted @ 2019-11-22 11:29 zdcsmart 阅读(87) 评论(0) 推荐(0) 编辑
摘要: request.setCharacterEncoding("UTF-8"); String username=request.getParameter("username"); response.setCharacterEncoding("gb2312"); response.setContentT 阅读全文
posted @ 2019-11-22 11:02 zdcsmart 阅读(115) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/a549654065/article/details/83064231 阅读全文
posted @ 2019-11-20 12:14 zdcsmart 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 修改端口号 * 修改端口号,%CATALANA_HOME%\conf\server.xml,修改<Connector port="8080">,把8080修改了即可。 * http协议默认端口为80,也就是说http://localhost,等同与http://localhost:80 如果把Tom 阅读全文
posted @ 2019-11-20 10:38 zdcsmart 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 在java里,每个对象都有一个类与之对应。 现在要生成某一个对象的代理对象,这个代理对象也要通过一个类来生成,所以首先要编写用于生成代理对象的类。 如何编写生成代理对象的类,两个要素: 代理谁 如何生成代理对象 代理谁? 设计一个类变量,以及一个构造函数,记住代理类代理哪个对象。 如何生成代理对象? 阅读全文
posted @ 2019-11-15 17:26 zdcsmart 阅读(89) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/u013045971/article/details/53433874 https://blog.csdn.net/qq_22172133/article/details/81174310 阅读全文
posted @ 2019-11-15 15:38 zdcsmart 阅读(86) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/liangmingshen/p/9274021.html 1、字符串前加 u 例:u"我是含有中文字符组成的字符串。" 作用: 后面字符串以 Unicode 格式 进行编码,一般用在中文字符串前面,防止因为源码储存格式问题,导致再次使用时出现乱码。 2 阅读全文
posted @ 2019-11-15 13:57 zdcsmart 阅读(87) 评论(0) 推荐(0) 编辑
摘要: package cn.itcast.generic;// 自定义类上的泛型public class Demo6 <T>{public void testa(){//a("aaaa");}public void a(T t){}public <E,K> void b(T t,E e,K k){}// 阅读全文
posted @ 2019-11-15 13:39 zdcsmart 阅读(950) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/DYD850804/article/details/80997251 阅读全文
posted @ 2019-11-14 20:56 zdcsmart 阅读(105) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页