
java 基础
rainnguy
这个作者很懒,什么都没留下…
展开
-
读取properties 文件
[color=blue]package com.shc.rrs.dashboard.util; import java.util.Enumeration; import java.util.Properties; import org.springframework.beans.factory.config.PropertiesFactoryBean; import org.spr...原创 2011-05-09 10:17:07 · 123 阅读 · 0 评论 -
读取 properties 文件的几种方法
[color=blue]使用J2SE API读取Properties文件的六种方法 1。使用java.util.Properties类的load()方法 示例: InputStream in = lnew BufferedInputStream(new FileInputStream(name)); Properties p = new Properties(); p.load(in)...原创 2011-05-11 17:04:36 · 142 阅读 · 0 评论 -
迭代输出例子
[color=blue] Date Total Returned Pending A-Cancel M-Cancel [/color]原创 2010-10-13 16:08:43 · 195 阅读 · 0 评论 -
时间问题
[color=blue]1: 得到天数 long day = (enddate.getTime() - startDate.getTime()) / (24 * 60 * 60 * 1000); 2: 一个有用的时间插件: 在jsp页面只需加入如下这句话: 之后即可使用:例如: hireDate: 附件里有这个插件的源码,解压之后直接放在WebCont...原创 2010-10-22 15:39:15 · 116 阅读 · 0 评论 -
java-map
[color=blue]1: map 有用的例子: public String execute() throws Exception { Map map = new HashMap(); HashMap HashMap1 = new HashMap(); HashMap HashMap2 = null; String str1 = null; String str2 = ...原创 2010-10-26 16:59:55 · 91 阅读 · 0 评论 -
HttpURLConnection 使用总结
[color=blue]1: public abstract class HttpURLConnectionextends extends URLConnection **public class IOUtilsextends ObjectGeneral IO stream manipulation utilities. This class provides...原创 2010-11-03 17:03:13 · 141 阅读 · 0 评论 -
读取文件(显示文件名字、日期、大小)
[color=blue]private Date startdate; private Date enddate; private String linkName; private List resultList = new ArrayList(); List fileContent = new ArrayList(); private String filePath = Gl...原创 2010-11-05 15:27:25 · 328 阅读 · 0 评论