`
qljobs
  • 浏览: 30400 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论
文章列表
下面是用于图片上传的JSP!源码我也上传了! /** * Author:QingLong * Date:2010-05-18 * Version:1.0 Beta */ <%@ page pageEncoding="gbk"%> <%@ page import="java.util.*,java.io.*" %> <%@ page import="org.apache.commons.fileupload.FileItem" %> <%@ page i ...
最近在做一个FTP图片服务器,以前没有接触过,在网上摸爬滚打了好几天过后终于出了一点小小成绩。 FtpServerImpl代码如下: package org.service.impl; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.H ...
//Tomcat下/conf/context.xml的配置 <!-- The contents of this file will be loaded for each web application --> <Context path="by" docBase="E:\Apache Software Foundation\Tomcat 6.0\webapps\by" debug="5" reloadable="tr ...
//最近做项目用到SimpleDateFormat类比较多,所以自己好好整理了一下。 public static void main(String[] a){ SimpleDateFormat sdfTimea = new SimpleDateFormat("yyyy/MM/dd hh:mm:ss"); String timea = sdfTimea.format(new Date()); System.out.println(timea); //输出结果为"2009/09/02 02:54:13”,这里输出的小时02为PM; System.out. ...

substring方法

1.public String substring(int beginIndex)返回一个新的字符串,它是此字符串的一个子字符串。该子字符串开始于索引处的字符,结束于此字符串。 例如: String a = "crazycode"; String a1 = a.substring(0); 则返回"crazycode"; String a2 = a.substring(1); 则返回"razycode"; String a3 = a.substring(2); 则返回"azycode"; begi ...
String str1 = null; str引用为空 String str2 = ""; str引用为空串 直接点就是null没有分配内存空间,而""分配了内存空间,因此str1还不是一个实例化的对象,而str2已经实例化。 注意因为null不是对象,""是对象。所以比较的时候必须是 if(str1==null){....}和if(str2.equals("")){....} 内存地址比较用equals,null用等号比较。 因此,如果str1=null;下面的写法错误: ...
上次写了一个关于JAVA时间比较的代码,那个只是用于比较大小,如果对于时间差值有一定要求的话,是无法满足要求的。下面的代码就将时间转换成了秒,这样对于两个时间的差值就非常的准确了。 //获取当前系统时间 SimpleDateFormat sdfTime = new SimpleDateFormat("kk:mm:ss"); String nowTime = sdfTime.format(new Date()); //随便写的一个开始时间 String startTime = "21:50:00"; //分别将系统时间和开始时间转换成秒 in ...
//Action中向按钮传递的value,try后面写需要执行的功能 try { response.setCharacterEncoding("UTF-8"); PrintWriter pw = response.getWriter(); pw.println(" 已点击 "); pw.flush(); pw.close(); } catch (Exception e) { e.printStackTrace(); } //JSP中的JS代码 function btChange(bt){ if(bt ...

JAVA时间比较

//获取系统当前时间 SimpleDateFormat sdfTime = new SimpleDateFormat("kk:mm:ss"); String nowTime = sdfTime.format(new Date()); //获取时间中除冒号以外的其他值 StringBuffer sba = new StringBuffer(); //获取kk String astartTime = startTime.substring(0, 2); //获取mm String bstartTime = startTime.substring(3, 5); / ...
Global site tag (gtag.js) - Google Analytics