一、JDBC ① 定义:在Java技术系列中,访问数据库的技术叫做JDBC,它提供了一系列的API,让Java语言 编写的代码连接数据库,对数据库的数据进行添加 删除 修改 查询。 ② JDBC中以下类或接口 java.sql.Connection: 负责连接数据库 java.sql.Stateme Read More
posted @ 2020-03-05 14:18 厂长在线养猪 Views(303) Comments(0) Diggs(0) Edit
JSP基本语法学习一、 注释① JSP注释语法:<%- - 注释内容 - -%> 不回出现在客户端的源代码中二、表达式① JSP表达式的作用是定义JSP的一些输出 表达式基本语法: <%= 变量|返回值|表达式% > JSP表达式的作用是将其里面内容所运算的结果输出到客户端 例: "<%=msg%> Read More
posted @ 2020-03-04 22:28 厂长在线养猪 Views(530) Comments(0) Diggs(0) Edit
事例:<form action="http://www.baidu.com"> 请输入你的账号:<input name="account" type="text"> <BR> 请输入你的密码:<input name="password" type="password"> <BR> <input ty Read More
posted @ 2020-03-04 22:22 厂长在线养猪 Views(209) Comments(0) Diggs(0) Edit
中文乱码问题 (1) 中文无法显示 没有把头文件上的字符集设置为中文字符集 ①<%@ page language="java" pageEncoding="gb2312" %> ②<%@ page language="java" contentType="text/html;charset=gb23 Read More
posted @ 2020-03-04 22:21 厂长在线养猪 Views(86) Comments(0) Diggs(0) Edit
JavaScript 学习一、变量的定义 ① 变量为弱变量 使用var关键字 例: var arg1=10; var arg2=new Array("王","李","赵")[定义字符串数组];二、函数定义 ① 基本格式: (1) function 函数名(参数列表){ return 值 } (2) Read More
posted @ 2020-03-03 23:46 厂长在线养猪 Views(247) Comments(0) Diggs(0) Edit
html 学习1 p为段落标签 有一个常用标签align配合 left,center,right 2 hr是水平线段标签 属性: size(水平线的宽度) width(水平线的长) align(水平线的对齐方式) noshade(线段无阴影 color(线段内部的颜色) 3 文字设计标签 font Read More
posted @ 2020-03-03 19:45 厂长在线养猪 Views(133) Comments(0) Diggs(0) Edit
链接:https://ac.nowcoder.com/acm/contest/2763/H来源:牛客网 二叉查找树 时间限制:C/C++ 2秒,其他语言4秒 空间限制:C/C++ 262144K,其他语言524288K 64bit IO Format: %lld 题目描述 树神精通各种树,这其中自然 Read More
posted @ 2019-12-21 22:23 厂长在线养猪 Views(309) Comments(0) Diggs(0) Edit
4292: Count the Trees 时间限制(普通/Java):2000MS/6000MS 内存限制:65536KByte总提交: 15 测试通过:6 描述 A binary tree is a tree data structure in which each node has at mo Read More
posted @ 2019-12-21 21:47 厂长在线养猪 Views(185) Comments(0) Diggs(0) Edit
Redundant Paths Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 21252 Accepted: 8773 Description In order to get from one of the F (1 <= F Read More
posted @ 2019-11-30 16:35 厂长在线养猪 Views(119) Comments(0) Diggs(0) Edit
Network of Schools Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 27846 Accepted: 10960 Description A number of schools are connected to a Read More
posted @ 2019-11-30 14:50 厂长在线养猪 Views(152) Comments(0) Diggs(0) Edit