- 浏览: 5920 次
- 性别:
- 来自: 郑州
最近访客 更多访客>>
最新评论
-
arienya:
可不可以放在span标签下面,这样就可以和其它元素在同一行了。 ...
JQUERY文字滚动 -
tianlihu:
做的挺好的,学习一下
JQUERY文字滚动
文章列表
/**
*
* 字符串操作的工具类
* @since 1.0
*
*/
public class StringUtil {
/**
* 将一字符串转换成拼音首字母
*
* @since 1.1
* @param strText
* 字符串
* @return 字符串对应的拼音首字母
*/
public static String getFirstPY(String strText) {
if (strText == null ...
写道
1.得到当前的时间
Calendar cal = Calendar.getInstance();
String time=formatter.format(cal.getTime());
String strEnd=time.substring(0, 16);// 2007-10-30 09:30
Calendar cal = Calendar.getInstance();
String time=formatter.format(cal.getTime());
String strEnd=time.substring(0, 16);// 2007-10- ...
把jdk打包tomcat中:
1.把jdk1.6.XXX拷贝到tomcat目录下
2.在startup.bat中第2行添加
set JAVA_HOME=..\jdk1.6.XXX
设置好了把tomcat目录直接拷贝到客户机上就可以运行WEB应用了.就不用单独安装jdk了,
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset ...