摘要:
http://www.tiobe.com/tpci.htm
january headline: php awarded programming language of 2004
the tiobe programming community index gives an indication of the popularity of programming languages. the in......
摘要:
log4j是一个优秀的开源的java日志系统,jboss内部也集成了它,在jboss下默认的只是对server做了每日日志,并没有对你部署的项目进行每日的日志构建,但我们可以通过修改log4j.xml文件来实现。log4j.xml文件在jboss安装目录下的server\default\conf下,打开log4j.xml文件
这是log4j默认的配置,我们先熟悉一下 <......
利用反射机制得到一个类的方法,变量,以及构造函数
代码:
import java.lang.reflect.*; 【程序编程相关:编写自定义TAG的WEB应用(JBuil】
package reflect; 【推荐阅读:
J2ME加密数据的一个第三方开源免费类库】{ 【扩展信息:
用JSP文件生成网站验证码】
public class dumpmethods
public static void main(string[] args) { try { class c=class.forname(args[0]); method m[] =c.getdeclaredmethods(); for(int i=0;i<m.length;i++) { system.out.println(m[i].tostring()); } ...
下一页 摘要:
ibm的jxl方式:package excelfile;import java.text.dateformat;import java.util.*;import java.io.*;import jxl.*;
/** * <p>title: </p> * <p>description: </p> * <p>copyright: co......