User Thorbj&#248;rn Ravn Andersen - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T06:27:30Z http://stackoverflow.com/feeds/user/53897 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1805923/incremental-deployment-of-java-web-applications/1807223#1807223 0 Answer by Thorbjørn Ravn Andersen for Incremental deployment of java web applications Thorbjørn Ravn Andersen 2009-11-27T07:18:22Z 2009-11-27T07:18:22Z <p>The usual answer is to use a Continuous Integration sstem which watches your subversion and build the artifacts and deploy them - you just want your web application to be abel to work even after being redeployed. Question is if that is fast enough for you?</p> http://stackoverflow.com/questions/1770442/java-custom-logger-logging-standards-or-and-best-practices/1770588#1770588 5 Answer by Thorbjørn Ravn Andersen for Java custom logger: logging standards or/and best practices Thorbjørn Ravn Andersen 2009-11-20T13:59:46Z 2009-11-24T07:16:32Z <p>I would STRONGLY recommend that you use slf4j as your logging API, as it is designed to be able to switch backends at deployment time. In other words, if you ever outgrow your own logging framework or has to interface with others using something else, it is simple to change your mind.</p> <p><a href="http://slf4j.org/" rel="nofollow">http://slf4j.org/</a></p> <p>It also allows you to use the {}-construction for easy inserting objects in your log strings without overhead if that string is not actually logged anyway.</p> <p>I'll suggest you consider adapting the "Simple" backend to your needs since it probably provides 90% of what you want.</p> <p><a href="http://www.slf4j.org/apidocs/org/slf4j/impl/SimpleLogger.html" rel="nofollow">http://www.slf4j.org/apidocs/org/slf4j/impl/SimpleLogger.html</a></p> <p>Note: Do not use any backend directly (like log4j or java.util.logging) as it will essentially lock your code to that backend. Use a facade.</p> http://stackoverflow.com/questions/1786094/is-it-ever-reasonable-to-nest-java-inner-classes-more-than-one-level-deep/1786227#1786227 0 Answer by Thorbjørn Ravn Andersen for Is it ever reasonable to nest Java inner classes more than one level deep? Thorbjørn Ravn Andersen 2009-11-23T21:45:06Z 2009-11-23T21:45:06Z <p>No. I have not. </p> <p>The standard example of a class inside a class is the Builder, where you have a subclass to help create a proper instance given a lot of possible configuration methods.</p> <p>Personally I would consider a more complex case of nested classes an excellent example of code which needs refactoring.</p> http://stackoverflow.com/questions/1782232/running-of-multiple-exe-java/1785504#1785504 1 Answer by Thorbjørn Ravn Andersen for Running of multiple exe Java Thorbjørn Ravn Andersen 2009-11-23T19:48:26Z 2009-11-23T19:48:26Z <p>Java Web Start can do that: <a href="http://java.sun.com/j2se/1.5.0/docs/guide/javaws/developersguide/faq.html#218" rel="nofollow">http://java.sun.com/j2se/1.5.0/docs/guide/javaws/developersguide/faq.html#218</a></p> http://stackoverflow.com/questions/1780112/javamail-vs-sendmail-performance-during-bulk-email/1780248#1780248 1 Answer by Thorbjørn Ravn Andersen for javamail vs sendmail performance during bulk email Thorbjørn Ravn Andersen 2009-11-22T22:30:10Z 2009-11-22T22:30:10Z <p>First of all, I suppose this is for legitimate reasons and not spamming?</p> <p>Sendmail is very, very fast for sending emails. What is not so fast is the DNS lookups needed to locate the mailservers for the domain - you need to do a MX query for each - and that would fit fine with the 5 messages pr second you report.</p> <p>When that is said, you would probably be best off with standard high-performance mailing list software where you construct the message with javamail and tell the mailing list software to send it to everybody. Also ally with e.g. Google Mail as they scale well, to actually get them all sent. Google Apps for Java can allow you to send from within the Google cloud.</p> <p>Back in ancient history when I worked with that Majordomo worked fine with sendmail. ezmlm works well with qmail (but is probably abandoned by now) and I think mjmlm works well with postfix. </p> http://stackoverflow.com/questions/1777342/pdf-file-generation-from-xml-or-html/1778463#1778463 0 Answer by Thorbjørn Ravn Andersen for PDF file generation from XML or HTML Thorbjørn Ravn Andersen 2009-11-22T11:28:43Z 2009-11-22T11:28:43Z <p>You will want to use a well supported XML format for this, as it will allow you to leverage the work of others.</p> <p>A well supported XML format is DocBook XML - <a href="http://www.docbook.org/" rel="nofollow">http://www.docbook.org/</a> - and this - <a href="http://sagehill.net/docbookxsl/index.html" rel="nofollow">http://sagehill.net/docbookxsl/index.html</a> - appears to be a good resource on doing the XML -> PDF using XSLT with the Docbook style sheets and other formats.</p> <p>This approach allows you to use any XSLT processor and any XSL/FO processor to get to your result. This gives you easy scriptability as well as the freedom to switch implementations if needed - notably older Apache FOP implementations degraded badly when the resulting PDF got "too large".</p> http://stackoverflow.com/questions/1777894/java-exceptions-what-to-catch-and-what-not-to/1778202#1778202 2 Answer by Thorbjørn Ravn Andersen for Java Exceptions, What to catch and what not to? Thorbjørn Ravn Andersen 2009-11-22T08:39:36Z 2009-11-22T08:39:36Z <p>These are my personal findings:</p> <ul> <li>You need a try {} catch (Throwable o) {...} in your main routine so any unexpected exception can be caught, logged and the user told.</li> <li>Checked exceptions are checked because you need as a programmer to make a decision what to do when they happen. Remember, one decision might be just to say "ok, time to crash".</li> <li>If you end up with a fatal situation with a checked exception where all you can do is crash, then "throw new RuntimeException("reason", checkedException);" so the handler above have something to log. Include value of important local variables - remember some day you will have to debug a situation where the only thing you have is the stack trace.</li> <li>Never, ever catch an exception and just ignore it. If you <em>have</em> to then you <em>must</em> document why you are allowed to break the rule, and do it right there, in the catch block. </li> </ul> <p>And a hint that will help you some day: When you crash, provide a simple means to let the user seeing the message email the stack trace to you.</p> <p><hr></p> <p>EDIT: Do not be afraid to create new exceptions if the ones available does not completely cover what you need. This allows you to get better naming in stack traces and your error handling code can differentiate between different cases easily. You may want to base all your own exceptions on a common base class ("OurDomainException") so you can use the base class in catch clauses to see if what type it is.</p> http://stackoverflow.com/questions/1601893/why-are-c-c-and-lisp-so-prevalent-in-embedded-devices-and-robots/1776810#1776810 1 Answer by Thorbjørn Ravn Andersen for Why are C, C++, and LISP so prevalent in embedded devices and robots? Thorbjørn Ravn Andersen 2009-11-21T21:15:06Z 2009-11-21T21:15:06Z <p>I once fell over this interesting snippet on using Lisp at NASA: <a href="http://www.flownet.com/gat/jpl-lisp.html" rel="nofollow">http://www.flownet.com/gat/jpl-lisp.html</a></p> <blockquote> <p>In 1994 JPL started working on the Remote Agent (RA), an autonomous spacecraft control system. RA was written entirely in Common Lisp despite unrelenting political pressure to move to C++. At one point an attempt was made to port one part of the system (the planner) to C++. This attempt had to be abandoned after a year. Based on this experience I think it's safe to say that if not for Lisp the Remote Agent would have failed.</p> </blockquote> http://stackoverflow.com/questions/1774055/cant-run-eclipse-on-netbook-msi-wind-help/1775707#1775707 0 Answer by Thorbjørn Ravn Andersen for Can't run eclipse on netbook MSi wind! HELP Thorbjørn Ravn Andersen 2009-11-21T15:02:23Z 2009-11-21T15:02:23Z <p>Use "Add/Remove programs" in the control panel to remove the java versions you have installed.</p> <p>Then visit "java.com" and use it to install Java, and verify that it is working. You do not need more than that to use Eclipse.</p> http://stackoverflow.com/questions/1775335/how-to-bulk-cleanup-imports-in-java-with-eclipse/1775699#1775699 1 Answer by Thorbjørn Ravn Andersen for How to bulk cleanup imports in Java with eclipse? Thorbjørn Ravn Andersen 2009-11-21T15:00:13Z 2009-11-21T15:00:13Z <p>After you have gotten rid of your import warnings, consider turning on Save Actions for Java Editors in preferences. We do the suggested source cleaning, plus we format the source. Makes it much easier to see exactly when a change was introduced later.</p> http://stackoverflow.com/questions/1775465/run-junit-automatically-when-building-eclipse-project/1775634#1775634 1 Answer by Thorbjørn Ravn Andersen for Run JUnit automatically when building Eclipse project Thorbjørn Ravn Andersen 2009-11-21T14:35:32Z 2009-11-21T14:35:32Z <p>I believe you are looking for <a href="http://ct-eclipse.tigris.org/" rel="nofollow">http://ct-eclipse.tigris.org/</a></p> <p>I've experimented with the concept earlier, and my personal conclusion was that in order for this to be useful you need a lot of tests which take time. Personally I save very frequently so this would happen frequently, and I didn't find it to be an advantage. It might be different for you.</p> <p>Instead we bit the bullet and set up a "build server" which watches our CVS repository and builds projects as they change. If the compilation fails or the <strong>tests</strong> fail we are notified quickly so we can remedy it. </p> <p>It is as always a matter of taste what works for you. This is what I've found.</p> http://stackoverflow.com/questions/1775269/upload-multiple-files-using-java/1775292#1775292 0 Answer by Thorbjørn Ravn Andersen for upload multiple files using java Thorbjørn Ravn Andersen 2009-11-21T11:56:37Z 2009-11-21T11:56:37Z <p>Apache MINA has a ftp server written in Java - <a href="http://mina.apache.org/ftpserver/" rel="nofollow">http://mina.apache.org/ftpserver/</a> - could easily be used with any ftp client to upload multiple files.</p> http://stackoverflow.com/questions/1772634/where-how-to-start-a-career-as-a-software-developer/1774914#1774914 0 Answer by Thorbjørn Ravn Andersen for Where & How to start a career as a software developer Thorbjørn Ravn Andersen 2009-11-21T08:12:20Z 2009-11-21T08:12:20Z <p>First of all, this is a fascinating world, and almost endless, but you have to find coding fun to want to be here.</p> <p>There is a lot to learn in order to be a good programmer (since you need to know your tools) but there is nothing wrong with starting small and go from there. What I understand from your description is you want to learn something useful you can use NOW. Here I would recommend books from the Pragmatic Programmer series.</p> <p>First, Learn to Program by Chris Pine - <a href="http://pragprog.com/titles/ltp2/learn-to-program-2nd-edition" rel="nofollow">http://pragprog.com/titles/ltp2/learn-to-program-2nd-edition</a> - which uses Ruby and completes your basic knowledge so you know how to program.</p> <p>Then, Practical Programming: An Introduction to Computer Science Using Python - <a href="http://pragprog.com/titles/gwpy/practical-programming" rel="nofollow">http://pragprog.com/titles/gwpy/practical-programming</a> - seems really nice. From the description "Did you ever wonder how computers represent DNA? How they can download a web page containing population data and analyze it to spot trends? Or how they can change the colors in a color photograph? If so, this book is for you. By the time you’re done, you’ll know how to do all of that and a lot more."</p> <p>By then you will have learned two modern computer languages and written several useful programs, which hopefully will give you knowledge to allow you to learn more and have a gut-feeling about where to go from there.</p> <p>I wish you luck. It is a steep climb but the view is gorgeous :)</p> http://stackoverflow.com/questions/1771744/accessing-private-variables-in-java-via-reflection/1771998#1771998 0 Answer by Thorbjørn Ravn Andersen for Accessing private variables in Java via reflection Thorbjørn Ravn Andersen 2009-11-20T17:20:58Z 2009-11-20T17:20:58Z <p>A good resource is the Java Almanac (now named exampledepot):</p> <p><a href="http://www.exampledepot.com/egs/java.lang.reflect/SetAccessible.html" rel="nofollow">http://www.exampledepot.com/egs/java.lang.reflect/SetAccessible.html</a></p> http://stackoverflow.com/questions/1771149/debugging-customer-firewall-issues/1771615#1771615 1 Answer by Thorbjørn Ravn Andersen for Debugging customer firewall issues Thorbjørn Ravn Andersen 2009-11-20T16:23:48Z 2009-11-20T16:23:48Z <p>traceroute (tracert for Windows) is a good thing for seeing where things go.</p> <p>a UPnP tool is also nice to see firewalls on the way.</p> http://stackoverflow.com/questions/1770076/log4j-strategies-for-creating-logger-instances/1770638#1770638 0 Answer by Thorbjørn Ravn Andersen for Log4J: Strategies for creating Logger instances Thorbjørn Ravn Andersen 2009-11-20T14:07:33Z 2009-11-20T14:07:33Z <p>Common convention is "a logger pr class and use the class name as its name". This is good advice.</p> <p>My personal experience is that this logger variable should NOT be declared static but an instance variable which is retrieved for each new. This allows the logging framework to treat two calls differently depending on where they come from. A static variable is the same for ALL instances of that class (in that class loader).</p> <p>Also you should learn all the possibilities with your logging backend of choice. You may have possibilities you did not expect possible.</p> http://stackoverflow.com/questions/1765908/is-it-better-to-have-code-duplication-and-have-it-be-very-simple-readable-or-hav/1766418#1766418 0 Answer by Thorbjørn Ravn Andersen for Is it better to have code duplication and have it be very simple/readable, or have no duplication (using generics) but be much more complicated? Thorbjørn Ravn Andersen 2009-11-19T20:50:00Z 2009-11-19T20:50:00Z <p>The primary reason why generics are hard to read is because it is unfamiliar to unexperienced programmers. This implies that great care must be taken in choice of naming and documentation in order to make clarity shine through.</p> <p>It is extremely important that such core classes are well-named. The designer may want to discuss this thoroughly with peers before choosing the names.</p> http://stackoverflow.com/questions/1766124/reading-to-get-back-into-java-development/1766349#1766349 0 Answer by Thorbjørn Ravn Andersen for Reading to get back into Java development? Thorbjørn Ravn Andersen 2009-11-19T20:39:36Z 2009-11-19T20:39:36Z <p>Instead of rewriting your application in Java, you may want to consider Mainsofts products which recompile MSIL to Java byte code.</p> <p><a href="http://dev.mainsoft.com/Default.aspx?tabid=166" rel="nofollow">http://dev.mainsoft.com/Default.aspx?tabid=166</a></p> http://stackoverflow.com/questions/1765541/how-would-i-robustly-log-binary-or-xml-using-slf4j-log4j-java-util-logging 0 How would I robustly log binary or XML using slf4j/log4j/java.util.logging? Thorbjørn Ravn Andersen 2009-11-19T18:33:56Z 2009-11-19T20:06:44Z <p>After doing logging for many years I have now reached a point where I need to be able to postprocess the log files with the long term goal of using the log files as a "transport medium" allowing me to persist objects et. al. so I can replay the backend requests. In order to do so I need to persist objects into a loggable form.</p> <p>The recommended way to do this by Sun, is to use java.beans.XMLEncoder to create an XML snippet which is quite agreeable with me, but the problem is that it is sent to an UTF-8 encoded OutputStream including an UTF-8 header, and OutputStreams are byte oriented. Log files are character oriented (strings) and logfiles are typically encoded in the default encoding for that platform. Our XML may include any Unicode character.</p> <p>I need a robust way of handling this, with preferation to an approach which generates humanly readable files.</p> <p>I have thought about converting the XML OuptutStream to a String, removing the unusable header, and flattening to ASCII (with any non-ASCII character encoded as a numeric entity). I have also thought about using XML transformations but I have a gut feeling that this will require more resources than I want a logger to do. </p> <p>Suggestions?</p> http://stackoverflow.com/questions/303615/logging-component-that-produces-xml-logs/1765370#1765370 0 Answer by Thorbjørn Ravn Andersen for Logging component that produces xml logs. Thorbjørn Ravn Andersen 2009-11-19T18:10:34Z 2009-11-19T18:10:34Z <p>Both log4j and logback have XMLLayouts which can generate XML fragments, which can then be postprocessed by Apache Chainsaw or Lillith.</p> http://stackoverflow.com/questions/1763049/is-there-a-java-program-snippet-which-can-compile-at-java-level-5-but-not-level-6 6 Is there a Java program snippet which can compile at Java level 5 but not level 6? Thorbjørn Ravn Andersen 2009-11-19T12:44:59Z 2009-11-19T14:48:59Z <p>I want to have a source file which can compile with javac / ecj set to Java 5 but not Java 6 (even if the underlying Java runtime is Java 6).</p> <p>This is to be certain that the compiler level is set correctly in Eclipse 3.5 running with Java 6 installed, but where the result needs to run on a Java 5 installation.</p> <p>For java 1.4 I could use "enum" as a variable name (which fails under Java 5 and later) but I cannot locate a similar approach for Java 5 versus 6 (and later).</p> <p>Suggestions?</p> http://stackoverflow.com/questions/1762652/suggest-me-a-link-to-learn-java-gui-creation/1762711#1762711 0 Answer by Thorbjørn Ravn Andersen for Suggest me a link to learn Java GUI creation Thorbjørn Ravn Andersen 2009-11-19T11:39:06Z 2009-11-19T11:39:06Z <p>I'd suggest the official Java Tutorial: <a href="http://java.sun.com/docs/books/tutorial/uiswing/" rel="nofollow">http://java.sun.com/docs/books/tutorial/uiswing/</a></p> <p>Note that this is a rather large area and may be hard to learn properly. Don't be discouraged :)</p> http://stackoverflow.com/questions/1761608/how-to-develop-a-customized-browser-with-java/1761841#1761841 2 Answer by Thorbjørn Ravn Andersen for How to develop a customized browser with java? Thorbjørn Ravn Andersen 2009-11-19T08:54:03Z 2009-11-19T11:33:00Z <p>I would strongly suggest that you talk to your manager and figure out precisely what needs to be done. If not you might end up with an enormous, unmaintainable beast which never ends up working correctly.</p> <p>A browser is not a trivial thing, neither to write nor to customize.</p> <p>Can't you just use the default browser on the system?</p> <p><hr></p> <p>EDIT: Also check the web browser inside Eclipse 3.5. If it fulfils your requirements, it can be made into a stand alone RCP client. Perhaps somebody already did.</p> http://stackoverflow.com/questions/1761676/java-hardware-interrupt-handling/1761876#1761876 -1 Answer by Thorbjørn Ravn Andersen for Java Hardware Interrupt Handling Thorbjørn Ravn Andersen 2009-11-19T09:00:46Z 2009-11-19T09:00:46Z <p>Hardware interrupts are special - they are frequent and need rapid service. I do not think that doing that in Java will be a good idea since you essentially go into the full JVM including JIT'ing and garbage collection which all in all results in unpredicability.</p> <p>In my experience hardware interrupts should be done in as low level a language as you can within reason. I.e. C or assembler. Not Java.</p> http://stackoverflow.com/questions/1288087/a-methology-that-allows-for-a-single-java-code-base-covering-many-different-versi 9 A methology that allows for a single Java code base covering many different versions? Thorbjørn Ravn Andersen 2009-08-17T13:55:08Z 2009-11-19T08:02:28Z <p>I work in a small shop where we have a LOT of legacy Cobol code and where a methology has been adopted to allow us to minimize forking and branching as much as possible.</p> <p>For a given release we have three levels:</p> <ul> <li>CORE - bottom layer, this code is common to all releases</li> <li>GROUP - optional code common to several customers.</li> <li>CUSTOMER - optional code specific for a single customer.</li> </ul> <p>When a program is needed, it is first searched for in CUSTOMER, then in GROUP and finally in CORE. A given application for us invokes many programs which all are looked for in this sequence (think exe files and PATH under Windows).</p> <p>We also have Java programs interacting with this legacy code, and as the core-group-customer lookup mehchanism does not lend it self easily to Java it has tended to grow in a CVS branch for each customer, requiring much too much maintainance. The Java part and the backend part tend to be developed in parallel.</p> <p>I have been assigned to figure out a way to make the two worlds meet. </p> <p>Essentially we want a Java enviornment which allows us to have a single code base with sources for each release, where we easily can select a group and a customer and work with the application as it goes for that customer, and then easily switch to another codeset and THAT customer.</p> <p>I was thinking of perhaps a scenario with an Eclipse project for each core, customer, and group and then use Project Sets to select those we need for a given scenario. The problem I cannot get my head about, is how we would create robust code in the CORE projects which will work regardless of which group and customer is selected. A Factory class which knows which sub class of a passed Class object to invoke instead of each and every new? </p> <p>Others must have had similar code base management problems. Anybody with experiences to share?</p> <p><hr></p> <p>EDIT: The conclusion to this problem above has been that CVS needs to be replaced with a source code management system better suited for dealing with many branches concurrently and the migration of source from one component to the other while keeping history. Inspired by the recent migration by slf4j and logback we are currently looking at git as it handles branches very well. We've considered subversion and mercurial too but git appears to be better for single location, multibranched projects. I've asked about Perforce in another question, but my personal inclination is towards open source solutions for something as crucial as this.</p> <p><hr></p> <p>EDIT: After some more pondering, we've found that our actual pain point is that we use branches in CVS, and that branches in CVS are the easiest to work with if you branch ALL files! The revised conclusion is that we <em>can</em> do this with CVS alone, by switching to a forest of java projects, each corresponding to one of the levels above, and use the Eclipse build paths to tie them together so each CUSTOMER version pulls in the appropriate GROUP and CORE project. We still want to switch to a better versioning system but this is so important a decision so we want to delay it as much as possible.</p> http://stackoverflow.com/questions/1758676/downloading-jar-files-at-runtime-in-java/1759237#1759237 1 Answer by Thorbjørn Ravn Andersen for Downloading JAR files at runtime in Java Thorbjørn Ravn Andersen 2009-11-18T21:34:15Z 2009-11-18T21:34:15Z <p>Java Web Start is a good choice but has some quirks. Notably:</p> <ul> <li>Code which is updated must be downloaded before the program starts. A more modern approach would download updates and apply them at next start.</li> <li>Default is inside a sandbox. If you need to go outside of that you must sign your code, which is rather cumbersome until you automate the deployment process (or use Netbeans which helps quite a bit).</li> <li>Problems are not easy to debug - only tool is enabling full trace in the Java Console.</li> <li>Caching of jars in the client is error prone. When you update, be sure that the URL is unique for each deployment component so the cache will not be used.</li> </ul> <p>But <em>WHEN</em> it works it works pretty well. It is to my knowledge the easiest way to have a centralized version easily updateable of a given Java application.</p> <p>--<br> EDIT: It appears that the "start program and transparently download updates if available" functionality is present in the latest Java 6. I have not tried it yet, but will soon.</p> http://stackoverflow.com/questions/1755990/how-to-reverse-date-format-in-xslt/1758368#1758368 0 Answer by Thorbjørn Ravn Andersen for How to reverse date format in XSLT ? Thorbjørn Ravn Andersen 2009-11-18T19:17:22Z 2009-11-18T19:17:22Z <p>It appears that you need to use an XSLT 2.0 schema aware processor to get built-in support for what you want to do with the xs:dateTime data type and the format-date function.</p> <p>See <a href="http://www.w3.org/TR/xmlschema-2/#dateTime" rel="nofollow">http://www.w3.org/TR/xmlschema-2/#dateTime</a> for the requirements for XSLT 2.0 being able to parse the string you have.</p> <blockquote> <p>The ·lexical space· of dateTime consists of finite-length sequences of characters of the form: '-'? yyyy '-' mm '-' dd 'T' hh ':' mm ':' ss ('.' s+)? (zzzzzz)?</p> </blockquote> <p>See <a href="http://www.dpawson.co.uk/xsl/rev2/dates.html#d16685e16" rel="nofollow">http://www.dpawson.co.uk/xsl/rev2/dates.html#d16685e16</a> for generating output.</p> <blockquote> <p>format-date( xs:date( concat( substring($d,1,4), '-', substring($d,7,2), '-', substring($d,5,2))), '[D01] [MNn] [Y0001]')</p> </blockquote> http://stackoverflow.com/questions/1754849/group-and-counting-a-string-in-ant/1754958#1754958 1 Answer by Thorbjørn Ravn Andersen for Group and counting a String in Ant Thorbjørn Ravn Andersen 2009-11-18T10:14:38Z 2009-11-18T10:14:38Z <p>I would suggest just printing each executable environment on System.out and then post process with "|sort| uniq -c".</p> http://stackoverflow.com/questions/1754697/displaying-chinese-text-in-an-applet/1754885#1754885 1 Answer by Thorbjørn Ravn Andersen for Displaying Chinese text in an Applet Thorbjørn Ravn Andersen 2009-11-18T10:03:24Z 2009-11-18T10:03:24Z <p>This indicated that the font does not support Chinese characters (which you probably guessed).</p> <p>You might find the java.awt.Font.canDisplayUpto() method interesting.</p> <p><a href="http://www.j2ee.me/javase/6/docs/api/java/awt/Font.html#canDisplayUpTo%28java.lang.String" rel="nofollow">http://www.j2ee.me/javase/6/docs/api/java/awt/Font.html#canDisplayUpTo%28java.lang.String</a>)</p> <p>"Indicates whether or not this Font can display a specified String. For strings with Unicode encoding, it is important to know if a particular font can display the string. This method returns an offset into the String str which is the first character this Font cannot display without using the missing glyph code. If the Font can display all characters, -1 is returned."</p> http://stackoverflow.com/questions/1752714/memory-profiling-for-java-desktop-application/1754273#1754273 2 Answer by Thorbjørn Ravn Andersen for Memory profiling for Java desktop application Thorbjørn Ravn Andersen 2009-11-18T07:48:50Z 2009-11-18T07:48:50Z <p>Attach to your program with jvisualvm from the Java 6 JDK and see where your memory goes.</p> http://stackoverflow.com/questions/1149741/connection-pooling-how-much-of-an-overhead-is-it/1149771#1149771 Comment by Thorbjørn Ravn Andersen on Connection Pooling - How much of an overhead is it? Thorbjørn Ravn Andersen 2009-11-27T20:43:23Z 2009-11-27T20:43:23Z Don't reinvent the wheel. Use a good pool implementation instead - you will need it some day (oh, stale connections hang? etc.) http://stackoverflow.com/questions/680514/object-pooling Comment by Thorbjørn Ravn Andersen on Object Pooling Thorbjørn Ravn Andersen 2009-11-27T19:49:12Z 2009-11-27T19:49:12Z Pool expensive objects only (like database connections and such). The definition of &quot;expensive&quot; strongly depends on your requirements. http://stackoverflow.com/questions/490858/what-advantages-have-a-commercial-java-profiler-over-the-free-ones-e-g-the-one Comment by Thorbjørn Ravn Andersen on What advantages have a commercial Java profiler over the free ones, e.g. the one in Netbeans? Thorbjørn Ravn Andersen 2009-11-27T13:04:53Z 2009-11-27T13:04:53Z Note: The jvisualvm profiler is the Netbeans profiler in a stand-alone form. http://stackoverflow.com/questions/1804540/should-junit-tests-be-javadocced/1804587#1804587 Comment by Thorbjørn Ravn Andersen on Should JUnit tests be javadocced? Thorbjørn Ravn Andersen 2009-11-26T17:41:40Z 2009-11-26T17:41:40Z I'd much rather see an explanatory string in each assertFoo statement. http://stackoverflow.com/questions/1803369/using-a-returned-string-to-call-a-method/1803519#1803519 Comment by Thorbjørn Ravn Andersen on Using a returned string to call a method? Thorbjørn Ravn Andersen 2009-11-26T17:40:24Z 2009-11-26T17:40:24Z This code is fragile and cannot be easily refactored (e.g. if you change the name of e.g. otherMethod()). http://stackoverflow.com/questions/1803075/complete-list-of-available-java-system-properties-and-known-values Comment by Thorbjørn Ravn Andersen on Complete list of available Java System Properties and Known Values Thorbjørn Ravn Andersen 2009-11-26T13:30:11Z 2009-11-26T13:30:11Z If you stuff the system properties in a hashtree before iterating, you get a sorted output. http://stackoverflow.com/questions/1797191/registering-on-long-gc-time-events-in-java Comment by Thorbjørn Ravn Andersen on Registering on long GC time events in Java Thorbjørn Ravn Andersen 2009-11-25T19:33:23Z 2009-11-25T19:33:23Z This is JVM specific. Which JVM do you use? http://stackoverflow.com/questions/1798829/signed-java-applet-restrictions Comment by Thorbjørn Ravn Andersen on signed java applet restrictions? Thorbjørn Ravn Andersen 2009-11-25T19:09:11Z 2009-11-25T19:09:11Z Silverbandit, you would be astonished if you knew what people think is obvious. http://stackoverflow.com/questions/1786094/is-it-ever-reasonable-to-nest-java-inner-classes-more-than-one-level-deep/1786227#1786227 Comment by Thorbjørn Ravn Andersen on Is it ever reasonable to nest Java inner classes more than one level deep? Thorbjørn Ravn Andersen 2009-11-24T09:25:17Z 2009-11-24T09:25:17Z Please note, I do not consider anonymous classes in this. They are a necessary pain if you need &quot;easy&quot; access to outside variables. I would however strongly consider an anonymous class inside another to be a code smell. http://stackoverflow.com/questions/1785686/how-many-times-can-classes-be-nested-within-a-class/1785706#1785706 Comment by Thorbjørn Ravn Andersen on How many times can classes be nested within a class? Thorbjørn Ravn Andersen 2009-11-23T23:36:23Z 2009-11-23T23:36:23Z The limit may be deeper when the classes are in a jar file. http://stackoverflow.com/questions/1785686/how-many-times-can-classes-be-nested-within-a-class/1785700#1785700 Comment by Thorbjørn Ravn Andersen on How many times can classes be nested within a class? Thorbjørn Ravn Andersen 2009-11-23T23:35:13Z 2009-11-23T23:35:13Z +1 for byte you... http://stackoverflow.com/questions/1786094/is-it-ever-reasonable-to-nest-java-inner-classes-more-than-one-level-deep/1786670#1786670 Comment by Thorbjørn Ravn Andersen on Is it ever reasonable to nest Java inner classes more than one level deep? Thorbjørn Ravn Andersen 2009-11-23T23:33:31Z 2009-11-23T23:33:31Z Those are anonymous inner classes, not nested inner classes. The two concepts are treated differently at <a href="http://java.sun.com/docs/books/tutorial/java/javaOO/nested.html" rel="nofollow">java.sun.com/docs/books/&hellip;</a> http://stackoverflow.com/questions/1782232/running-of-multiple-exe-java/1782245#1782245 Comment by Thorbjørn Ravn Andersen on Running of multiple exe Java Thorbjørn Ravn Andersen 2009-11-23T19:46:05Z 2009-11-23T19:46:05Z consider just binding to the localhost interface (127.0.0.1) http://stackoverflow.com/questions/1770442/java-custom-logger-logging-standards-or-and-best-practices/1770588#1770588 Comment by Thorbjørn Ravn Andersen on Java custom logger: logging standards or/and best practices Thorbjørn Ravn Andersen 2009-11-23T19:41:14Z 2009-11-23T19:41:14Z Your choice - you WILL outgrow your logger someday... http://stackoverflow.com/questions/1780896/java-getting-the-properties-of-a-class-to-construct-a-string-representation/1780910#1780910 Comment by Thorbjørn Ravn Andersen on Java: Getting the properties of a class to construct a string representation Thorbjørn Ravn Andersen 2009-11-23T07:51:46Z 2009-11-23T07:51:46Z +1 for compile time Lombok example