- 浏览: 735602 次
- 性别:
- 来自: 沈阳
最新评论
-
李科笠:
这款编辑器,能够保存从word中复制的图片么?
CKEditor3.x的介绍和使用 -
sybell:
讲得好,但得试一下有没有错。
Mysql 中获取刚插入的自增长id的值 -
zqb666kkk:
nice 很好的启发
spring的jdbcTemplate 返回值为list -
nizen:
不错,有用!
Mysql 中获取刚插入的自增长id的值 -
MEZboy:
真全面,感谢分享!
Radio单选框OnClick事件的设置[网络收集]
文章列表
-----------------------------------------------------
How to use Hibernate: 如何使用Hibernate(用MyEclipse)
1. Create hibernate.cfg.xml || hibernate.properties 创建Hibernate的配置文件 !!
2. Create tables in Database 创建表单(在数 ...
1.用户注册页面register.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
</head>
<body>
<form action="register.action& ...
index.jsp
<%@ page contentType="text/html; charset=UTF-8"%>
<%@taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
<title>Hello World</title>
</head>
<body>
<h2><s:text name="user"/& ...
date.jsp webroot/jsp
<%@page contentType="text/html;charset=utf-8" pageEncoding="utf-8" %>
<%@taglib uri="/struts-tags" prefix="s" %>
<%@taglib uri="/struts-dojo-tags" prefix="sx" %>
<html>
<head>
...
1.关闭db2
db2stop 或
db2stop force。
在脚本中一般两个都写上,避免使用db2stop force命令,如:
db2stop
db2stop force
2.启动db2
db2start
3.创建数据库
db2 create db <db name>
或db2 create db using codeset GBK territory CN
4.删除数据库
执行此操作要小心。
db2 drop db <db name>
如果不能 ...
为什么会有类型转换?
HTTP协议中传递的任何内容都是String类型的,所以一旦我们在服务器上需要一个非String类型的对象,例如:int或者Date,那么我们就需要在收到 HTTP请求的数据的时候,首先将String类型的数据变换为我们需要的对应类型的数据,之后再使用。这个过程就是类型转换
类型转换在Struts2中是透明的,即Struts2内置了类型转换机制。
转换原理:
以一个例子来说明如何使用Struts2内置的类型转换功能。加入我们希望用户在画面上输入一个字符形式的坐标点,例如(33,2)而我们希望在程序中得到一个Point(33, 2)的类型与之对应。
要 ...
===========================================
login.jsp
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=gb2312">
<meta http-equiv="Cache-Con ...
<html>
<head>
<script type="text/javascript">
var xmlhttp;
function loadXMLDoc(url)
{
xmlhttp=null;
if (window.XMLHttpRequest)
{// code for IE7, Firefox, Mozilla, etc.
xmlhttp=new XMLHttpRequest();
}
else if (window.ActiveXObject)
{// code for I ...
<html>
<body>
<%
String i="HelloWorld";
out.print(i);
%>
</body>
</html>
cdcatalog.xsl
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h2>My CD Collectio ...
一、删除数据库中表的某些相同的某些记录
delete from tablename where only_Id not in(select min(only_id) from tablename group by sameName)
二、选出相同记录的SQL语句 AND 删除相同记录的SQL语句删除相同记录的SQL语句
//IF 表中无主键,ID中无(IDENTITY(1,1)),ID相同的记录删除?
a、select * from tableName where id in(select id from tableName group by id having count(*) > ...
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>cha0</title>
</head>
<body bgColor="black" align="center">
<FONT style="FONT-SIZE: 20pt; FILTER: sha ...
package com.zyl;
import java.util.*;
public class TestIterator {
@SuppressWarnings("unchecked")
public static void main(String[] args) {
Collection c = new HashSet();
c.add("yyy");
c.add("iii");
c.add("kkk");
c.add("ooo&q ...