Jsp编码规范
Jsp编码规范
1.1 文件后缀(File Suffixes)
文件类别 文件后缀
--------------------------------------
Java源文件 .java
Java字节码文件 .class
动态页面 .jsp
静态页面 .html
脚本文件 .js
1.2 常用文件名(Common File Names)
文件名 用途
------------------------------------------------
README 概述特定目录下所含内容的文件的首选文件名
2 缩进排版(Indentation)
4个空格常被作为缩进排版的一个单位。缩进的确切解释并未详细指定(空格 vs. 制表符)。一个制表符等于8个空格(而非4个)。
3 注释(Comments)
Jsp程序有两类注释:静态页面注释和Java注释.
静态页面注释: <!— express -->
Jsp注释: <%-- express --%>
4 Jsp语法(Syntax)
① JSP Element
② Syntax
③ Interpretation
---------------------------------------------------------------------------------------------
① JSP Expression
② <%= expression %>
③ Expression is evaluated and placed in output.
---------------------------------------------------------------------------------------------
① JSP Scriptlet
② <% code %>
③ Code is inserted in service method.
---------------------------------------------------------------------------------------------
① JSP Declaration
② <%! code %>
③ Code is inserted in body of servlet class, outside of service method.
---------------------------------------------------------------------------------------------
① JSP page Directive
② <%@ page att="val" %>
③ Directions to the servlet engine about eneral setup.
---------------------------------------------------------------------------------------------
① JSP include Directive
② <%@ include file="url" %>
③ A file on the local system to be included when the JSP page is translated into a servlet.
---------------------------------------------------------------------------------------------
① The
相关文档:
image.jsp用于生成数字图片
<%@ page contentType="image/jpeg;charset=gb2312" import="java.awt.*,
java.awt.image.*,java.util.*,javax.imageio.*" %>
<%!
Color getRandColor(int fc,int bc){//给定范围获得随机颜色
Random random = new Rand ......
建立条件首先一定要确定自己的mysql,tomcat,eclipse连接是正确的。
index.jsp很简单,就一个跳转。
<%
response.sendRedirect("lg.jsp");
%>
lg.jsp 实现登录框架
<%@ page contentType="text/html; charset=utf-8" %>
<html>
<head>
<title>
login
</title>
</hea ......
因为是跟着视频学习的,有很多用的东西不一样,但是还是慢慢的摸索出来啦!
1.Microsoft JDBC Driver 的下载安装
只要在网上找到资源一步步来就可以了。
2.配置环境变量
我用的是tomcat6.0首先配的是
classpath和path,这些都是在配jdk的时候就配过了,所以就不详细说明了,只要将lib和bin文件加入到相关 ......
第一种:
就是直接给出下载的地址,这种方式很不好,因为会暴露你的地址,带来很多不安全的因素,可以说是千万不要用这种
第二种:
下载页面
<%@ page language="java" import="java.util.*" pageEncoding="GB18030"%>
<html>
<head>
<title>download</title>
</head>
< ......
index.jsp
<%@ page language="java" import="java.sql.*" import="java.lang.*" import="java.util.*" pageEncoding="GB2312"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<%!
& ......