| « | November 2025 | » | | 日 | 一 | 二 | 三 | 四 | 五 | 六 | | | | | | | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | | | | | | | |
| 公告 |
|
| Blog信息 |
|
blog名称: 日志总数:22 评论数量:55 留言数量:0 访问次数:130436 建立时间:2006年3月13日 |

| |
|
[java程序设计]Setup.rul 软件技术
jjs_love 发表于 2007/5/8 14:34:46 |
//=========================================================================== // // File Name: Setup.rul // // Description: Blank setup main script file // // Comments: Blank setup is an empty setup project. If you want to // create a new project via. step-by step instructions use the // Project Assistant. // //======================== |
|
|
[java程序设计]filter过滤 软件技术
jjs_love 发表于 2007/3/31 11:12:22 |
web.xml <servlet> <description>This is the description of my J2EE component</description> <display-name>This is the display name of my J2EE component</display-name> <servlet-name>ShowImgServlet</servlet-name> <servlet-class>rcom.rf.common.ShowImgServlet</servlet-class> </servlet> <servlet-mapping>   |
|
|
[java程序设计]日期js 软件技术
jjs_love 发表于 2006/4/18 13:10:08 |
Calendar.js
function Calendar(formatString) { var today = new Date(); this.currYear = today.getYear(); this.currMonth = today.getMonth(); this.currDate = today.getDate(); this.currHour = today.getHours(); this.currMinute = today.getMinutes(); this.currSecond = today.getSeconds(); this.currMeridiem = (this.currHour >= 12 ? 'PM' : 'AM'); var property = null;
var self = document. |
|
|
[java程序设计]url中传中文 软件技术
jjs_love 发表于 2006/3/21 11:49:47 |
'> <%@ page language="java" contentType="text/html;charset=GBK"%> <%@ page import="java.sql.*, java.net.*,java.io.*,java.util.* " %>
<% request.getLocale().setDefault(Locale.CHINA); String s="中国人"; try { & |
|
|
[java程序设计]取得程序的物理路径 随笔
jjs_love 发表于 2006/3/13 12:59:55 |
取得程序的物理路径
private String getClassPath() { String strClassName = getClass().getName(); String strPackageName = ""; if(getClass().getPackage() != null) { strPackageName = getClass().getPackage().getName(); }
String strClassFileName = ""; if(!"".equals(strPackageName)) &n |
|
« 1 ›
|