<?xml version='1.0' encoding='UTF-8'?>
<rss version='2.0' xmlns:dc='http://purl.org/dc/elements/1.1/'>
<channel>
<title>365Key-天天网摘 - ewang的网摘(Java)</title>
<description>365Key-天天网摘 - ewang的网摘(Java)</description>
<link>http://www.365key.com/rss/ewang/Java/</link>
<generator>365Key (http://www.365key.com)</generator>
<language>zh-cn</language>
<docs>365Key-天天网摘 精彩导航</docs>
<image>http://counter.csdn.net/pv.aspx?id=88</image>
<item>
<title>Using Valang validator - Confluence</title>
<link>http://www.365key.com/item/546141</link>
<category>Spring; Java; validate</category>
<pubDate>Sun, 29 May 2005 04:27:43 GMT</pubDate>
<description>
<blockquote>With Valang validator you can write declarative validation rules using an intuitive syntax. The purpose of Valang validator is:

    * to quickly write validation rules without the need to create a class or write Java code.
    * to ease the use of the Spring validation tools.
    * to make validation rules compact, easily readable and maintainable.</blockquote></description>
<dc:creator>ewang</dc:creator>
</item>
<item>
<title>About Valang validator</title>
<link>http://www.365key.com/item/546139</link>
<category>Java; Spring; validate</category>
<pubDate>Sun, 29 May 2005 04:27:18 GMT</pubDate>
<description>
<blockquote></blockquote></description>
<dc:creator>ewang</dc:creator>
</item>
<item>
<title>Software ?Quaqua Look And Feel</title>
<link>http://www.365key.com/item/537525</link>
<category>Java; Swing</category>
<pubDate>Thu, 26 May 2005 17:32:51 GMT</pubDate>
<description>
<blockquote>The Quaqua Look and Feel (Quaqua) is a Java implementation of Apple's Human Interface Guidelines (AHIG) for Mac OS X.</blockquote></description>
<dc:creator>ewang</dc:creator>
</item>
<item>
<title>Neat trick to reduce size of your code.</title>
<link>http://www.365key.com/item/537516</link>
<category>Java; Optimization</category>
<pubDate>Thu, 26 May 2005 17:24:23 GMT</pubDate>
<description>
<blockquote>I admire work Eric Bruneton did on ASM, because this code is piece of art. ASM runtime is only 35K and it support all Java 5 features and still work on JRE 1.3. There is many gems in there and this is only one of the tricks you can use to reduce class size.</blockquote></description>
<dc:creator>ewang</dc:creator>
</item>
<item>
<title>创建国际化的 JSP 应用程序</title>
<link>http://www.365key.com/item/528697</link>
<category>Java; jsp; International</category>
<pubDate>Wed, 25 May 2005 01:54:24 GMT</pubDate>
<description>
<blockquote>为国际客户设计 Java Server Pages（JSP）应用程序更像是一门艺术，而不像是科学，但所涉及的内容不仅仅能满足眼球。成功的关键是理解与国际化有关的独一无二的服务器端问题。Java 开发人员 Sing Li 将阐述这个重要问题，并给出两个经过考验确实有效的解决方案。</blockquote></description>
<dc:creator>ewang</dc:creator>
</item>
<item>
<title>JUnit 断言扩展</title>
<link>http://www.365key.com/item/528557</link>
<category>Java; JUnit</category>
<pubDate>Wed, 25 May 2005 01:30:47 GMT</pubDate>
<description>
<blockquote>JUnit 通过制作满足预期需求的断言来测试软件代码单元，但是这些断言只限于基本操作。IBM 软件工程师 Tony Morris 通过引入 JUnit 断言扩展（Assertion Extensions for JUnit）填补了这个空白，JUnit 断言扩展提供了一整套在 JUnit 框架中执行的复杂断言。下面请随作者的演示一道，了解如何使用这个来自 alphaWorks 的新包来提高 Java 软件的可靠性和健壮性。</blockquote></description>
<dc:creator>ewang</dc:creator>
</item>
<item>
<title>Simple CSV</title>
<link>http://www.365key.com/item/527900</link>
<category>Java</category>
<pubDate>Tue, 24 May 2005 16:55:09 GMT</pubDate>
<description>
<blockquote>I've been bitten a number of times in the last several months by there not being a decent CSV library in Java. CSV is just enough of a pain to want a somewhat thought out tool (escaping, quoted fields, possibly comment rows).</blockquote></description>
<dc:creator>ewang</dc:creator>
</item>
<item>
<title>CSV Tools</title>
<link>http://www.365key.com/item/527899</link>
<category>Java</category>
<pubDate>Tue, 24 May 2005 16:54:41 GMT</pubDate>
<description>
<blockquote>Utility classes to simply reading from, and writing to, CSV (or other character delimited) files. They provide for splitting up, and building, flat files into arrays or Strings. Very basic, but they handle escaping, quotes, etc.</blockquote></description>
<dc:creator>ewang</dc:creator>
</item>
<item>
<title>New Spring Releases </title>
<link>http://www.365key.com/item/524573</link>
<category>Java; Spring</category>
<pubDate>Tue, 24 May 2005 02:22:44 GMT</pubDate>
<description>
<blockquote></blockquote></description>
<dc:creator>ewang</dc:creator>
</item>
<item>
<title>如何在方法内部获得调用者信息--透明思考</title>
<link>http://www.365key.com/item/523298</link>
<category>Java</category>
<pubDate>Mon, 23 May 2005 13:58:04 GMT</pubDate>
<description>
<blockquote>public static String getCaller() {
    int i; 
    StackTraceElement stack[] = (new Throwable()).getStackTrace(); 
    for (i=0;  i &lt; stack.length;  i  ) {
      StackTraceElement ste=stack[i]; 
      System.out.println(ste.getClassName() &quot;.&quot; ste.getMethodName() &quot;(...)&quot;); 
      System.out.println(i &quot;--&quot; ste.getMethodName()); 
      System.out.println(i &quot;--&quot; ste.getFileName()); 
      System.out.println(i &quot;--&quot; ste.getLineNumber()); 
    }
}</blockquote></description>
<dc:creator>ewang</dc:creator>
</item>
<item>
<title>Pebble - blogging tools written in Java</title>
<link>http://www.365key.com/item/523278</link>
<category>Java; opensource; blog</category>
<pubDate>Mon, 23 May 2005 13:55:49 GMT</pubDate>
<description>
<blockquote>Pebble weblog is the popular server-side blogging tool written in Java. It's small, fast and feature-rich with an unrivalled ease of use. Blog content is stored as XML files on disk and served up dynamically, so there's no need to install a database. All maintenance and administration can be performed through your web browser, making Pebble ideal for anybody who is constantly on the move or doesn't have direct access to their host.</blockquote></description>
<dc:creator>ewang</dc:creator>
</item>
<item>
<title>Code Statistic Lines Eclipse Plugin:Java项目代码行数统计插件</title>
<link>http://www.365key.com/item/523245</link>
<category>Java; eclipse</category>
<pubDate>Mon, 23 May 2005 13:49:07 GMT</pubDate>
<description>
<blockquote>Code Statistic Lines Eclipse Plugin:Java项目代码行数统计插件
适用范围:Eclipse 3.0.1,3.0.2</blockquote></description>
<dc:creator>ewang</dc:creator>
</item>
<item>
<title>Daemon - Daemon : Java based daemons or services</title>
<link>http://www.365key.com/item/522987</link>
<category>Java</category>
<pubDate>Mon, 23 May 2005 12:23:29 GMT</pubDate>
<description>
<blockquote>Most multi-user operating systems already have a way in which server applications are started and stopped, under Unix based operating systems non interactive server applications are called daemons and are controlled by the operating system with a set of specified signals. Under Windows such programs are called services and are controlled by appropriate calls to specific functions defined in the application binary, but although the ways of dealing with the problem are different, in both cases the operating system can notify a server application of its imminent shutdown, and the application has the ability to perform certain tasks before its process of execution is destroyed.</blockquote></description>
<dc:creator>ewang</dc:creator>
</item>
<item>
<title>CowCatcher</title>
<link>http://www.365key.com/item/521955</link>
<category>opensource; Java</category>
<pubDate>Mon, 23 May 2005 07:07:14 GMT</pubDate>
<description>
<blockquote>CowCatcher is an Open Source initiative aimed at providing authoring tools and a repository for Java training material. This material is primarily directed at those who provide Java class-room training (like ourselves!), but may be of use for anyone studying Java.</blockquote></description>
<dc:creator>ewang</dc:creator>
</item>
<item>
<title>Pushlets - Whitepaper</title>
<link>http://www.365key.com/item/521934</link>
<category>opensource; Java</category>
<pubDate>Mon, 23 May 2005 07:00:36 GMT</pubDate>
<description>
<blockquote>Pushlets are a servlet-based mechanism where data is pushed directly from server-side Java objects to (Dynamic) HTML pages within a client-browser without using Java applets or plug-ins. This allows a web page to be periodically updated by the server. The browser client uses JavaScript/Dynamic HTML features available in type 4  browsers like NS and MSIE. The underlying mechanism uses a servlet HTTP connection over which JavaScript code is pushed to the browser.</blockquote></description>
<dc:creator>ewang</dc:creator>
</item>
<item>
<title>MyJavaPack Home - what's mine is yours</title>
<link>http://www.365key.com/item/521883</link>
<category>Java; opensource</category>
<pubDate>Mon, 23 May 2005 06:43:31 GMT</pubDate>
<description>
<blockquote>MyJavaPack is a platform independent installer of 37 Java developer goodies.</blockquote></description>
<dc:creator>ewang</dc:creator>
</item>
<item>
<title>Letting Java in on SQL Server Notifications</title>
<link>http://www.365key.com/item/510821</link>
<category>Java; DB.MSSQL</category>
<pubDate>Sat, 21 May 2005 07:09:32 GMT</pubDate>
<description>
<blockquote>SQL Server's Notification Services let you instruct the database to let your applications or your users know when data changes or reaches critical thresholds. Furthermore, standard notification delivery methods ensure that notifications aren't limited to .NET or Windows clients.</blockquote></description>
<dc:creator>ewang</dc:creator>
</item>
<item>
<title>Fast MD5 Implementation in Java</title>
<link>http://www.365key.com/item/510818</link>
<category>Java; security; md5</category>
<pubDate>Sat, 21 May 2005 07:09:05 GMT</pubDate>
<description>
<blockquote></blockquote></description>
<dc:creator>ewang</dc:creator>
</item>
<item>
<title>OpenWFE :: Home</title>
<link>http://www.365key.com/item/510800</link>
<category>Java; workflow</category>
<pubDate>Sat, 21 May 2005 07:03:07 GMT</pubDate>
<description>
<blockquote>OpenWFE is an open source workflow engine. It is implemented in Java, and is available under the BSD license.

OpenWFE not only features a workflow engine, but also a full fledged Business Process Management Suite.</blockquote></description>
<dc:creator>ewang</dc:creator>
</item>
<item>
<title>SiteMesh - SiteMesh Overview</title>
<link>http://www.365key.com/item/510784</link>
<category>Java; sitemesh</category>
<pubDate>Sat, 21 May 2005 06:57:45 GMT</pubDate>
<description>
<blockquote>SiteMesh is a web-page layout and decoration framework and web- application integration framework to aid in creating large sites consisting of many pages for which a consistent look/feel, navigation and layout scheme is required.</blockquote></description>
<dc:creator>ewang</dc:creator>
</item>
</channel></rss>
