`
文章列表
public boolean sendMailWithPic(String from, String to, String subject,                                   String content,                                    int subscribeid) {//        try {//            content = new String(content.getBytes("ISO-8859-1"),//                                 & ...
Google和百度、雅虎的站内搜索代码  对于一个网站来说,使用搜索引擎来进行站内搜索往往比自己编写的站内搜索更高效,并且不占用网站服务器的资源,下面是我搜集到的几个主要搜索引擎(Google和百度、雅虎)的站内搜索代码,使用时只需要将代码里的"www.williamlong.info"替换成你的网址即可。<!--Google站内搜索开始--><form method=get action="http://www.google.com/search"><input type=text name=q><input t ...
  为了让搜索引擎更好地搜索到你的网站,建议在<head></head>中加入:     <meta   name="keywords"   content="你的网站的关键字内容,多个关键字之间用逗号分开"   />  
在java中取得当前的系统时间并且转化成自己想要的格式     需要引进 java.util.Calendar 和 java.text.SimpleDateFormat 这两个类:       Calendar rightNow = Calendar.getInstance();        SimpleDateFormat fmt = new SimpleDateFormat("yyyyMMddhhmmss");        String sysDatetime = fmt.format(rightNow.getTime());      可以对 new SimpleD ...
查看 linux 系统的字符cat /etc/sysconfig/i18n 修改 vi /etc/sysconfig/i18n

登录随机码

    博客分类:
  • java
<%@ page contentType="image/jpeg" import="java.awt.*,java.awt.image.*,java.util.*,javax.imageio.*" %><%!Color getRandColor(int fc,int bc){//给定范围获得随机颜色Random random = new Random();if(fc>255) fc=255;if(bc>255) bc=255;int r=fc+random.nextInt(bc-f ...

比较时间的js

    博客分类:
  • js
<script language="JavaScript"> function check_confirm(form){  var cks = queryForm1.elements;  if (datecompare(cks[3].value,cks[5].value)==false) {   alert("结束时间 应该在 开始时间 之后");   return;  }  check(form); } //功能介绍:检查第一个日期是否小于第二个日期 //参数说明:要检查的字符串(YYYY-MM-DD) //返回值:false:不是 true ...
----------------------------没有关闭和链接的浮动广告--------------------------------------------<div id="img" style="position:absolute;">  <img src=""   onMouseover="clearInterval(interval)" onmouseout="interval = setInterval('changePos()',30);"></ ...
一//////////////////////////////////////////// package datebase; import org.apache.log4j.Logger; import org.apache.log4j.PropertyConfigurator; public class Test {    static {     PropertyConfigurator.configure(       Test.class.getResource("log4j.properties"));//其中主类要 ...
action中生成cookie:    if (rememberMe != null) {                                // 创建Cookie     Cookie cokie_user = new Cookie("username", userName);      Cookie cokie_password = new Cookie("password", passWord);     cokie_user.setMaxAge(60 * 60); // 失效时间为一小时     cokie_password.setMa ...
jxl.jar下载地址:http://sourceforge.net/project/showfiles.php?group_id=799261.import jxl.Sheet;import java.io.InputStream;import java.util.Vector;import java.io.FileInputStream;import jxl.Workbook;public class Test2 {    public static void main(String [] args){     ReadExcel("c://20060818104025_50101 ...
1。使用java.util.Properties类的load()方法 示例: InputStream in = lnew BufferedInputStream(new FileInputStream(name)); Properties p = new Properties(); p.load(in); 2。使用java.util.ResourceBundle类的getBundle()方法 示例:ResourceBundle rb = ResourceBundle.getBundle(name, Locale.getDefault()); 3。使用java.util.PropertyResou ...
一、安装篇   jspSmartUpload是由www.jspsmart.com网站开发的一个可免费使用的全功能的文件上传下载组件,适于嵌入执行上传下载操作的JSP文件中。该组件有以下几个特点: 1、使用简单。在JSP文件中仅仅 ...
commons-fileupload-1.0上传组件使用实例. 文件上传一个WEB开发的基本功能, 以前做项目的时候,自己写过组件,也用过别人写的组件,感觉效果都不是很好,最的发现commons-fileupload是一个很不错的选择,从功能,文档,技术背景都相当不错. 花一天时间. 从API到网上看资料. 终于可以在我的项目中用它了. 在这里做一个总结, 也希望对想用这个组件的朋友有所帮助.FileItem类,它包括了单个表单属性的所有资料,所有表单值都可以通过它来取得.主要有以下方法.具体用途请参考API.          void delete()           getConten ...
如何自动提交表单?<script language="JavaScript" type="text/JavaScript"></script><script type="text/javascript"></script><script type="text/javascript"></script>-------------------------------------------------------------------------- ...
Global site tag (gtag.js) - Google Analytics