摘要:
Android六大基本布局分别是: 线性布局LinearLayout 表格布局TableLayout 相对布局RelativeLayout 层布局FrameLayout 绝对布局AbsoluteLayout 网格布局GridLayout。其中,表格布局是线性布局的子类。用得相对较多的是线性布局和相对 阅读全文
摘要:
@WebServlet注解用于标注在一个继承了HttpServlet类之上,属于类级别的注解。 错误代码404其中/RegistServlet表示访问该servlet的 url 映射(地址)(此处为相对路径,即 “项目名称/RegistServlet” ) action的绝对路径和相对路径还是懂不了 阅读全文
摘要:
private void update(HttpServletRequest request, HttpServletResponse response) { request.setCharacterEncoding("utf-8"); String name = request.getParame 阅读全文
摘要:
看不懂... 阅读全文
摘要:
https://blog.csdn.net/zhang_hongli_li/article/details/48550817 可以查询。 阅读全文
摘要:
String sql="select * from students order by id ASC";//学号从小到大排列 DESC 按倒序排列 阅读全文
摘要:
Statement 与 PreparedStatement都是jdbc内置对象,PreparedStatement相当于是Statement的扩展,用于弥补Statement无法将程序中的变量作为查询的缺陷 ,。 例子:分别用statement 与 preparedStatement: 用State 阅读全文
摘要:
1.用 for(Class class :list)来遍历 2.采用c标签,注意到导入jstl jar包 举例: <c:forEach items="${list}" var="item"> <tr> <td>${item.id}</td> <td>${item.name}</td> <td>${i 阅读全文
摘要:
由于eclipse版本不同,配制tomcat时并没有server选项,需要下载,下载时没有注意到左下角的进度哐,导致弄了好久没成功,只需要等——。 阅读全文