Java
文章平均质量分 62
sunny_feng
这个作者很懒,什么都没留下…
展开
-
Favor static member classes over nonstatic
Here are 4 types of nested class. static member class none-static member class anonymous class local class Anonymous Class & Local Class: Both are defined inside method or constructor...原创 2009-08-14 17:33:17 · 78 阅读 · 0 评论 -
Filter out files from directory--Java
private void process(String path, FileWriter fw) throws Exception { FilenameFilter filter = new FilenameFilter() { public boolean accept(File dir, String name) { return name.end...2009-08-25 16:15:30 · 111 阅读 · 0 评论 -
XML file paser sample
//从XML文件中读取信息,并写入fw. private void processFile(File file, FileWriter fw) throws Exception { String sObject = ""; String dObject = ""; String sCondition = ""; String dCondition = ""...2009-08-25 16:21:25 · 92 阅读 · 0 评论 -
Java Study Summary
1. Class Loader: a. Load parent class b. allocate mem for static member and method c. Init parent class static member d. Class Load before Class construction. [code="java&...原创 2010-06-12 12:01:43 · 112 阅读 · 0 评论 -
java.lang.ClassNotFoundException: oracle.security.jps.wls.listeners.JpsApplicati
1. issue description: I got exception when deploy my web application in weblogic server java.lang.ClassNotFoundException: oracle.adf.share.weblogic.listeners.ADFApplicationLifecycleListener java....原创 2011-09-23 17:26:45 · 260 阅读 · 0 评论 -
ADF using css skin
create an xml file called trinidad-skins.xml under view-controller WEB-INF and put this code. I have my mystyle.css under css folder.<?xml version="1.0" encoding="windows-1252" ?><skins xmlns...原创 2011-03-10 10:57:36 · 122 阅读 · 0 评论 -
JDEV: Uncaught exception: Exception in thread "JDI Internal Event Handler"
ISSUE: when web app starting, there is the exception: Uncaught exception: Exception in thread "JDI Internal Event Handler" java.lang.IllegalArgumentException: Invalid JNI signature character ';'...原创 2011-03-11 10:43:19 · 332 阅读 · 0 评论 -
Image to Buffer
private byte[] getPhoto() throws Exception { final String ICON_EXT = "png"; String file ="D:\\workspace\\OSL\\trunk\\learning-tool\\Web\\public_html\\images\\chart.png"; Buffered...原创 2012-03-06 16:21:48 · 181 阅读 · 0 评论