09 2020 档案

JSP数据交互
摘要:JSP数据交互 什么是jsp内置对象:jsp内置对象是Web容器创建的一组对象 示例: <% int[ ] value = { 60, 70, 80 }; for (int i : value) { out.println(i); } %> 常用的jsp内置对象 out,request,respon 阅读全文

posted @ 2020-09-17 20:18 xiaohanzong 阅读(135) 评论(0) 推荐(0)

JSP/Servlet技术动态网页开发基础
摘要:什么是服务器:我的理解是一台高性能的计算机 URL:Uniform Resource Locator统一资源定位符 URL组成:http://localhost:8080/new/index.html http:协议部分 localhost:8080主机ip地址:端口号 new/index.html 阅读全文

posted @ 2020-09-16 20:42 xiaohanzong 阅读(175) 评论(0) 推荐(0)

导航