RSS feed [root] /weblog /features /java




login:

password:

title search:




 


Wed May 31 14:32:21 GMT 2023

features


https://javaalmanac.io/ diff of difference version of Java

(google search) (amazon search)
second
download zip of files only

Wed Sep 26 14:53:25 GMT 2012 From /weblog/java/features

Unicode


How to Normalize Unicode in java:
http://java.sun.com/javase/6/docs/api/java/text/Normalizer.html
http://unicode.org/faq/normalization.html
http://en.wikipedia.org/wiki/Unicode_normalization

How to use text collator in java - http://errorken.blogspot.com/2011/03/javatextcollator.html

Make the string look like same but not equals - http://vanillajava.blogspot.com.au/2012/09/hidden-code.html

(google search) (amazon search)


Sat Aug 18 01:19:36 GMT 2012 From /weblog/java/features

package


http://www.javacodegeeks.com/2012/05/about-java-packages.html

http://johannesbrodwall.com[..]ames-transformed-my-system-architecture/

(google search) (amazon search)


Thu Jun 07 16:50:22 GMT 2012 From /weblog/java/features

preference


A dirty issue from Java Perference API


java.util.prefs.BackingStoreException: Couldn't get file lock.
at java.util.prefs.FileSystemPreferences.sync(FileSystemPreferences.java:715)
at java.util.prefs.FileSystemPreferences.flush(FileSystemPreferences.java:807)
at com.macquarie.st.adapter.rda.STServer.preparePrefs(STServer.java:501)
at com.macquarie.st.adapter.rda.STServer.start(STServer.java:120)
at com.macquarie.st.commons.core.runtime.STMain.start(STMain.java:170)
at com.macquarie.st.commons.core.runtime.STMain.main(STMain.java:50)

(google search) (amazon search)


Sat May 12 16:21:50 GMT 2012 From /weblog/java/features

maths


Compare between StrictMatch, Math and apache FastMath - http://blog.juma.me.uk[..]rformance-of-fastmath-from-commons-math/

A round bug in Java fixed in Java7, nice reading - http://www.javacodegeeks.com[..]mathround0499999999999999917-rounds.html

(google search) (amazon search)


Sat Nov 12 02:22:50 GMT 2011 From /weblog/java/features

tools


Trouble shooting guide, introduct few tools help to check issues - http://java.sun.com/j2se/1.5/pdf/jdk50_ts_guide.pdf

(google search) (amazon search)


Sun Sep 18 16:41:52 GMT 2011 From /weblog/java/features

realtime


Develop with real-time Java, Create applications with predictable response times - http://www.ibm.com[..]/training/kp/j-kp-rtj/index.html?ca=drs-

(google search) (amazon search)


Thu May 05 00:35:19 GMT 2011 From /weblog/java/features

java7


A summary - http://tech.puredanger.com/java7 http://www.developer.com[..]d-to-Make-Developers-More-Productive.htm

concurrency improvement - http://www.infoq.com/news/2007/07/concurrency-java-se-7

Finally it is confirmed - http://www.petefreitag.com/item/778.cfm

You can do this in Java7, look pretty nice
try{
try-code
}
catch (SQLException | IOException) {
catch-code
}

http://extreme-java.blogspot.com[..]7-multi-catch-blocks-for-exceptions.html

(google search) (amazon search)


Thu Dec 03 07:41:18 GMT 2009 From /weblog/java/features

instrument


Use java.lang.instrument.Instrumentation; for profiling - http://java.dzone.com/articles/java-profiling-under-covers

(google search) (amazon search)


Tue Oct 30 10:03:14 GMT 2007 From /weblog/java/features

jws


A nice introduction
http://www.cokeandcode.com/webstarthowto

In depth discussion
http://today.java.net/lpt/a/216
http://today.java.net/lpt/a/221

Some common problem: http://joust.kano.net[..]-never-deploy-with-java-web-start-again/

(google search) (amazon search)


Mon Sep 10 16:19:46 GMT 2007 From /weblog/java/features

using Class.isAssignableFrom


If class A is subclass of B, then

B.isAssignableFrom(new A()) == true, and, new A().getClass() == B.class

However, when you object is generated using proxy tool like CGLIB

B.isAssignableFrom(new A()) == true, and, new A().getClass() != B.class

http://www.systemmobile.com/wp/?p=189

(google search) (amazon search)


Fri Aug 03 06:41:26 GMT 2007 From /weblog/java/features

attach-on-demand


Retrieving .class files from a running app - http://blogs.sun.com[..]ajan/entry/retrieving_class_files_from_a

Using Attach API - http://weblogs.java.net[..]nus/archive/2007/08/combining_casca.html

(google search) (amazon search)


Sun Apr 01 10:38:36 GMT 2007 From /weblog/java/features

About Mustang


Some information worth to know about new java 6

Resource control , control fallback action if resource not found, and other feature - http://java.sun.com[..]pi/java/util/ResourceBundle.Control.html

A shell like console that allow you to manage JVM intern : http://blogs.sun.com[..]jan?entry=using_script_shell_plugin_with

Top 10 features: http://blogs.sun.com[..]an?entry=observability_top_10_in_mustang

New tools come with JDK 6 that help your development: http://www.weiqigao.com/blog/2006/02/18/new_toys_in_jdk_6.html

Examples about various tools - http://jroller.com/page/eyallupu?entry=jse_6_new_java_features

dynamic compilation - http://www.juixe.com[..]x.php/2006/12/13/java-se-6-compiler-api/

More detail of Out of memory error (OOME): http://blogs.sun.com[..]ntry=outofmemoryerror_looks_a_bit_better , this one show how is that better OOME stacktrace as well as wildcast classpath - http://jroller.com[..]pu?entry=java_se_6_outofmemeoryerror_and

Fix java bug by you!! http://download.java.net/jdk/JDK-Starter.html

Scripting support: http://today.java.net[..]6/04/11/scripting-for-java-platform.html http://www.onjava.com/lpt/a/6560

Use scripting support as bridge of java and jruby - http://jroller.com/page/mom?entry=tutorial_running_ruby_using_the

List of enchancement: http://java.sun.com/javase/6/jcp/beta/ http://blogs.sun.com[..]dannycoward?entry=the_10_things_you_need

dtrace support: http://blogs.sun.com[..]rarajan?entry=dtrace_java_turning_on_off http://blogs.sun.com[..]sundararajan?entry=using_dtrace_java_api

Compilation interface - http://weblogs.java.net[..]tball/archive/2006/09/hacking_javac.html

(google search) (amazon search)


Thu Feb 15 09:19:25 GMT 2007 From /weblog/java/features

aspect


Tutorial of using AOP for security - http://www.informit.com[..]ticles/printerfriendly.asp?p=340869&rl=1

(google search) (amazon search)


Wed Feb 14 07:28:56 GMT 2007 From /weblog/java/features

ServiceLoader


Tutorial of service loader, which is more easy and clear to define and use the service of a jar - http://www.javaspecialists.co.za/archive/newsletter.do?issue=139

(google search) (amazon search)


Tue Feb 13 05:04:23 GMT 2007 From /weblog/java/features

system kill


Some observation of using system kill with difference input - http://weblogs.java.net[..]m/archive/2007/02/kill_and_kill_9_1.html

(google search) (amazon search)


Fri Dec 29 10:20:06 GMT 2006 From /weblog/java/features

DoubleBraceInitialization


http://www.c2.com/cgi/wiki?DoubleBraceInitialization

(google search) (amazon search)


Fri Jun 16 13:36:39 GMT 2006 From /weblog/java/features

scripting support



A pretty clever way to work with database and xml with groovy and springs

http://jroller.com/page/Solomon?entry=spring_2_0_and_groovydaos

(google search) (amazon search)


Sat Jun 03 08:27:54 GMT 2006 From /weblog/java/features

javaone slides


http://agilejava.com/blog/?p=40

(google search) (amazon search)


Thu Jun 01 15:03:02 GMT 2006 From /weblog/java/features

javabean


Is it have to support so much? Not sure for me...

http://weblogs.java.net[..]air/archive/2006/05/the_unknown_jav.html

(google search) (amazon search)


Thu Jan 12 09:41:29 GMT 2006 From /weblog/java/features

java commandline processing


A blog entry discuss various java commandline processing library: http://mult.ifario.us[..]11/command-line-argument-parsing-in-java

(google search) (amazon search)


Mon Nov 28 10:04:16 GMT 2005 From /weblog/java/features

using functional pointer style in java


In my own development, I find that delegates implementing interfaces are more useful than those using invoke. The buildRunnable method is especially useful. In Swing programming, where large numbers of Runnables are needed to pass control to the swing thread, the ability to turn methods into Runnables is particularly useful. Delegates allow me to largely eliminate the need for anonymous inner classes, improving the readability of my code.

http://www.onjava.com/lpt/a/3772

(google search) (amazon search)


Mon Nov 28 09:58:20 GMT 2005 From /weblog/java/features

javaworld articles collection


javaworld articles archive in java-channels: Selected from communities, most with comment

http://www.java-channel.org/query.jsp?host=www.javaworld.com

(google search) (amazon search)