User Kevin Wong - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T15:49:51Z http://stackoverflow.com/feeds/user/4792 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1309879/java-service-wrapper-3-2-3-on-mac-os-x-64-bit 0 Java Service Wrapper 3.2.3 on Mac OS X 64-bit Kevin Wong 2009-08-21T02:53:03Z 2009-11-26T23:00:02Z <p>What's the best way to run an app using Java Service Wrapper 3.2.3 on Mac OS X 64-bit?</p> <p><code>sh.script.in</code> works, but there is no macosx-universal-64 version of the wrapper native binary (on JSW's 3.2.3 downloads page anyway <a href="http://wrapper.tanukisoftware.org/downloads/3.2.3/" rel="nofollow">http://wrapper.tanukisoftware.org/downloads/3.2.3/</a>).</p> <p>The result is the following error in the logs:</p> <pre><code>INFO | jvm 1 | 2009/08/20 14:47:15 | WARNING - Unable to load the Wrapper's native library because none of the INFO | jvm 1 | 2009/08/20 14:47:15 | following files: INFO | jvm 1 | 2009/08/20 14:47:15 | libwrapper-macosx-x86-64.jnilib INFO | jvm 1 | 2009/08/20 14:47:15 | libwrapper-macosx-universal-64.jnilib INFO | jvm 1 | 2009/08/20 14:47:15 | libwrapper.jnilib INFO | jvm 1 | 2009/08/20 14:47:15 | could be located on the following java.library.path: INFO | jvm 1 | 2009/08/20 14:47:15 | /Applications/EngineManager/. INFO | jvm 1 | 2009/08/20 14:47:15 | Please see the documentation for the wrapper.java.library.path INFO | jvm 1 | 2009/08/20 14:47:15 | configuration property. INFO | jvm 1 | 2009/08/20 14:47:15 | System signals will not be handled correctly. </code></pre> <p>Also, when I try to restart the system, I get an error like:</p> <pre><code>Logout has timed out because the application ...WrapperSimpleApp failed to quit. ...` </code></pre> <p>I can't upgrade to a newer version of JSW because they went GPL.</p> http://stackoverflow.com/questions/151590/java-how-do-detect-a-remote-side-socket-close 6 Java: How do detect a remote side socket close? Kevin Wong 2008-09-30T02:58:18Z 2009-10-29T22:52:46Z <p>How do you detect if <code>Socket#close()</code> has been called on a socket on the remote side?</p> http://stackoverflow.com/questions/46146/what-are-the-java-regular-expressions-for-matching-ipv4-and-ipv6-strings 0 What are the Java regular expressions for matching IPv4 and IPv6 strings? Kevin Wong 2008-09-05T16:08:18Z 2009-10-15T15:13:40Z <p>Looking for a string to pass to String#matches(String) that will match IPv4, and another to match IPv6.</p> http://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection/122773#122773 0 Answer by Kevin Wong for Java: What is the best way to filter a Collection? Kevin Wong 2008-09-23T18:21:13Z 2009-09-06T15:07:56Z <pre><code>com.google.common.collect.Collections2#filter(Collection,Predicate) </code></pre> <p>in <a href="http://code.google.com/p/google-collections/" rel="nofollow">Google Collections</a></p> http://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection 7 Java: What is the best way to filter a Collection? Kevin Wong 2008-09-23T16:26:26Z 2009-09-06T15:07:56Z <p>I want to filter a <code>java.util.Collection</code> based on a predicate.</p> http://stackoverflow.com/questions/55693/how-do-you-use-fogbugz-with-an-agile-methodology 8 How do you use FogBugz with an Agile methodology? Kevin Wong 2008-09-11T02:29:25Z 2009-08-26T12:19:48Z <p>"Evidence-based scheduling" in FogBugz is interesting, but how do I use it w/ an Agile methodology?</p> http://stackoverflow.com/questions/1309879/java-service-wrapper-3-2-3-on-mac-os-x-64-bit/1319923#1319923 0 Answer by Kevin Wong for Java Service Wrapper 3.2.3 on Mac OS X 64-bit Kevin Wong 2009-08-24T00:00:30Z 2009-08-24T00:00:30Z <p>I downloaded the Wrapper 3.2.3 source and compiled a macosx x86 64-bit version, which got rid of the native library warning.</p> <p>I then noticed that I could restart the system from the command line with a <code>sudo</code>, and figured that the user-issued restart ("Apple Menu"/Restart) did not have permission to stop the service. I thought perhaps the user-issued restart was trying to stop the service because it was using a java.awt.SystemTray tray icon. I changed the service to run headless and voila, user-issued restart then executed without error.</p> http://stackoverflow.com/questions/135386/what-is-the-best-reason-for-unit-testing 7 What is the best reason for unit testing? Kevin Wong 2008-09-25T19:20:32Z 2009-08-17T09:23:53Z <p>There's a lot of discussion about unit testing these days. Here's a poll for the best reason to do it.</p> <p>ONLY ONE REASON PER ANSWER PLEASE!</p> http://stackoverflow.com/questions/1120455/how-do-i-exclude-a-specific-method-constructor-from-the-results-of-the-javadoc-an 2 How do I exclude a specific method/constructor from the results of the javadoc Ant task? Kevin Wong 2009-07-13T16:13:42Z 2009-08-05T15:23:28Z <p>I'm using javadocs generated by the <code>javadoc</code> Ant task to document a web service, and I want to exclude some constructors from the output. How do I do that?</p> http://stackoverflow.com/questions/1120455/how-do-i-exclude-a-specific-method-constructor-from-the-results-of-the-javadoc-an/1121272#1121272 1 Answer by Kevin Wong for How do I exclude a specific method/constructor from the results of the javadoc Ant task? Kevin Wong 2009-07-13T18:36:15Z 2009-07-13T18:36:15Z <p>Change the method access level of the method, then use the use the <code>javadoc</code> task's access-level filtering attributes, <code>private</code>, <code>package</code>, etc. Only do this if it makes sense in your code, though, e.g., method that had inappropriately loose access levels.</p> <p>For constructors, for example, you could reduce the access level to <code>package</code>, then create a factory class in the same package that provides construction access outside the package. The factory class can be easily filtered from the javadocs. Kind of hacky, but it works.</p> http://stackoverflow.com/questions/244283/jar-security 4 Jar security Kevin Wong 2008-10-28T18:18:23Z 2009-05-20T23:42:46Z <p>I have a standalone Java app that has some licensing code that I want to secure, i.e., prevent users from changing my software to circumvent the licensing. What is the best way to do this? </p> <p>I've looked at obfuscation, but that entails all sorts of problems: reflection, serialization, messed-up stack traces, etc. Perhaps jar signing could be a solution? But how do I verify the jar at runtime? And how do I ensure that the user doesn't change the jar verification code?</p> http://stackoverflow.com/questions/99242/rmi-server-rmiregistry-or-locateregistry-createregistry/107036#107036 0 Answer by Kevin Wong for RMI server: rmiregistry or LocateRegistry.createRegistry Kevin Wong 2008-09-20T03:57:16Z 2009-03-19T04:31:13Z <p>If you use Spring to export your RMI services, it automatically starts a registry if one is not already running. See <a href="http://static.springframework.org/spring/docs/2.5.x/api/org/springframework/remoting/rmi/RmiServiceExporter.html" rel="nofollow">RmiServiceExporter</a></p> http://stackoverflow.com/questions/174774/java-are-concurrent-reads-and-writes-possible-on-a-blocking-socketchannel-via-ob 3 Java: Are concurrent reads and writes possible on a blocking SocketChannel via Object(In|Out)putStreams? Kevin Wong 2008-10-06T15:31:58Z 2009-02-13T15:45:30Z <p>I created an <code>ObjectInputSteam</code> and <code>ObjectOutputStream</code> on a blocking <code>SocketChannel</code> and am trying to read and write concurrently. My code is something like this:</p> <pre><code>socketChannel = SocketChannel.open(destNode); objectOutputStream = new ObjectOutputStream(Channels.newOutputStream(socketChannel)); objectInputStream = new ObjectInputStream(Channels.newInputStream(socketChannel)); Thread replyThread = new Thread("SendRunnable-ReplyThread") { @Override public void run() { try { byte reply = objectInputStream.readByte();//(A) //..process reply } catch (Throwable e) { logger.warn("Problem reading receive reply.", e); } } }; replyThread.start(); objectOutputStream.writeObject(someObject);//(B) //..more writing </code></pre> <p>Problem is the write at line (B) blocks until the read at line (A) completes (blocks on the object returned by <code>SelectableChannel#blockingLock()</code> ). But app logic dictates that the read will not complete until all the writes complete, so we have an effective deadlock.</p> <p><code>SocketChannel</code> javadocs say that concurrent reads and writes are supported.</p> <p>I experienced no such problem when I tried a regular Socket solution:</p> <pre><code>Socket socket = new Socket(); socket.connect(destNode); final OutputStream outputStream = socket.getOutputStream(); objectOutputStream = new ObjectOutputStream(outputStream); objectInputStream = new ObjectInputStream(socket.getInputStream()); </code></pre> <p>However, then I cannot take advantage of the performance benefits of <code>FileChannel#transferTo(...)</code></p> http://stackoverflow.com/questions/56954/easymock-how-do-i-create-a-mock-of-a-genericized-class-without-a-warning 3 EasyMock: How do I create a mock of a genericized class without a warning? Kevin Wong 2008-09-11T15:49:09Z 2008-12-28T12:10:13Z <p>The code</p> <pre><code>private SomeClass&lt;Integer&gt; someClass; someClass = EasyMock.createMock(SomeClass.class); </code></pre> <p>gives me a warning "Type safety: The expression of type SomeClass needs unchecked conversion to conform to SomeClass&lt;Integer&gt;".</p> http://stackoverflow.com/questions/174774/java-are-concurrent-reads-and-writes-possible-on-a-blocking-socketchannel-via-ob/179104#179104 1 Answer by Kevin Wong for Java: Are concurrent reads and writes possible on a blocking SocketChannel via Object(In|Out)putStreams? Kevin Wong 2008-10-07T15:41:00Z 2008-10-07T15:41:00Z <p>This seems to be a bug in <code>java.nio.channels.Channels</code> (thanks to Tom Hawtin; post it as an answer next time). A good description and workaround are described <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4774871" rel="nofollow">here</a> (actually a duplicate of the bug Tom listed):</p> <p>I tested the workaround and it works.</p> http://stackoverflow.com/questions/170554/java-save-objects-in-a-textfile-are-there-readymade-solutions/173125#173125 0 Answer by Kevin Wong for Java: Save objects in a textfile? Are there readymade solutions? Kevin Wong 2008-10-06T03:29:55Z 2008-10-06T03:29:55Z <p>You might also want to consider using XML encoding, which seems to me to have more durability than serialization. Use <code>java.beans.XMLEncoder/XMLDecoder</code> classes.</p> http://stackoverflow.com/questions/135386/what-is-the-best-reason-for-unit-testing/135629#135629 1 Answer by Kevin Wong for What is the best reason for unit testing? Kevin Wong 2008-09-25T19:58:05Z 2008-09-25T19:58:05Z <p>Decreases turnaround time. Instead of booting up an entire app, just run the unit test.</p> http://stackoverflow.com/questions/133879/how-should-one-go-about-choosing-a-default-tcp-ip-port-for-a-new-service 12 How should one go about choosing a default TCP/IP port for a new service? Kevin Wong 2008-09-25T15:08:26Z 2008-09-25T16:10:19Z <p>When developing an app that will listen on a TCP/IP port, how should one go about selecting a default port? Assume that this app will be installed on many computers, and that avoiding port conflicts is desired.</p> http://stackoverflow.com/questions/133879/how-should-one-go-about-choosing-a-default-tcp-ip-port-for-a-new-service/133888#133888 13 Answer by Kevin Wong for How should one go about choosing a default TCP/IP port for a new service? Kevin Wong 2008-09-25T15:10:16Z 2008-09-25T15:10:16Z <p>Go <a href="http://www.iana.org/assignments/port-numbers" rel="nofollow">here</a> and pick a port with the description <code>Unassigned</code></p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/133850#133850 10 Answer by Kevin Wong for Hidden features of Eclipse Kevin Wong 2008-09-25T15:02:24Z 2008-09-25T15:02:24Z <p>Code completion supports CamelCase, e.g., typing <code>CWAR</code> will show a result for <code>ClassWithAReallyLongName</code>. Start using this feature and you'll never type another long classname again.</p> <p>(parts copied from another answer because i think answers w/ just one hint/tip are best for polling)</p> http://stackoverflow.com/questions/125516/managed-language-for-scientific-computing-software/125528#125528 1 Answer by Kevin Wong for Managed language for scientific computing software Kevin Wong 2008-09-24T05:15:27Z 2008-09-24T05:15:27Z <p>Not exactly sure what the question is, but you might want to check out <a href="http://projectfortress.sun.com/Projects/Community" rel="nofollow">Fortress</a></p> http://stackoverflow.com/questions/12159/how-should-i-unit-test-threaded-code/125487#125487 2 Answer by Kevin Wong for How should I unit test threaded code? Kevin Wong 2008-09-24T04:58:52Z 2008-09-24T04:58:52Z <p>I've done a lot of this, and yes it sucks.</p> <p>Some tips:</p> <ul> <li><a href="http://groboutils.sourceforge.net/" rel="nofollow">GroboUtils</a> for running multiple test threads</li> <li><a href="http://www.alphaworks.ibm.com/tech/contest?open&amp;S_TACT=105AGX59&amp;S_CMP=GR&amp;ca=dgr-lnxw03awcontest" rel="nofollow">alphaWorks ConTest</a> to instrument classes to cause interleavings to vary between iterations</li> <li>Create a <code>throwable</code> field and check it in <code>tearDown</code> (see Listing 1). If you catch a bad exception in another thread, just assign it to throwable.</li> <li>I created the utils class in Listing 2 and have found it invaluable, especially waitForVerify and waitForCondition, which will greatly increase the performance of your tests.</li> <li>Make good use of <code>AtomicBoolean</code> in your tests. It is thread safe, and you'll often need a final reference type to store values from callback classes and suchlike. See example in Listing 3.</li> <li>Make sure to always give your test a timeout (e.g., <code>@Test(timeout=60*1000)</code>), as concurrency tests can sometimes hang forever when they're broken</li> </ul> <p>Listing 1:</p> <pre><code>@After public void tearDown() { if ( throwable != null ) throw throwable; } </code></pre> <p>Listing 2:</p> <pre><code>import static org.junit.Assert.fail; import java.io.File; import java.lang.reflect.InvocationHandler; import java.lang.reflect.Proxy; import java.util.Random; import org.apache.commons.collections.Closure; import org.apache.commons.collections.Predicate; import org.apache.commons.lang.time.StopWatch; import org.easymock.EasyMock; import org.easymock.classextension.internal.ClassExtensionHelper; import static org.easymock.classextension.EasyMock.*; import ca.digitalrapids.io.DRFileUtils; /** * Various utilities for testing */ public abstract class DRTestUtils { static private Random random = new Random(); /** Calls {@link #waitForCondition(Integer, Integer, Predicate, String)} with * default max wait and check period values. */ static public void waitForCondition(Predicate predicate, String errorMessage) throws Throwable { waitForCondition(null, null, predicate, errorMessage); } /** Blocks until a condition is true, throwing an {@link AssertionError} if * it does not become true during a given max time. * @param maxWait_ms max time to wait for true condition. Optional; defaults * to 30 * 1000 ms (30 seconds). * @param checkPeriod_ms period at which to try the condition. Optional; defaults * to 100 ms. * @param predicate the condition * @param errorMessage message use in the {@link AssertionError} * @throws Throwable on {@link AssertionError} or any other exception/error */ static public void waitForCondition(Integer maxWait_ms, Integer checkPeriod_ms, Predicate predicate, String errorMessage) throws Throwable { waitForCondition(maxWait_ms, checkPeriod_ms, predicate, new Closure() { public void execute(Object errorMessage) { fail((String)errorMessage); } }, errorMessage); } /** Blocks until a condition is true, running a closure if * it does not become true during a given max time. * @param maxWait_ms max time to wait for true condition. Optional; defaults * to 30 * 1000 ms (30 seconds). * @param checkPeriod_ms period at which to try the condition. Optional; defaults * to 100 ms. * @param predicate the condition * @param closure closure to run * @param argument argument for closure * @throws Throwable on {@link AssertionError} or any other exception/error */ static public void waitForCondition(Integer maxWait_ms, Integer checkPeriod_ms, Predicate predicate, Closure closure, Object argument) throws Throwable { if ( maxWait_ms == null ) maxWait_ms = 30 * 1000; if ( checkPeriod_ms == null ) checkPeriod_ms = 100; StopWatch stopWatch = new StopWatch(); stopWatch.start(); while ( !predicate.evaluate(null) ) { Thread.sleep(checkPeriod_ms); if ( stopWatch.getTime() &gt; maxWait_ms ) { closure.execute(argument); } } } /** Calls {@link #waitForVerify(Integer, Object)} with &lt;code&gt;null&lt;/code&gt; * for {@code maxWait_ms} */ static public void waitForVerify(Object easyMockProxy) throws Throwable { waitForVerify(null, easyMockProxy); } /** Repeatedly calls {@link EasyMock#verify(Object[])} until it succeeds, or a * max wait time has elapsed. * @param maxWait_ms Max wait time. &lt;code&gt;null&lt;/code&gt; defaults to 30s. * @param easyMockProxy Proxy to call verify on * @throws Throwable */ static public void waitForVerify(Integer maxWait_ms, Object easyMockProxy) throws Throwable { if ( maxWait_ms == null ) maxWait_ms = 30 * 1000; StopWatch stopWatch = new StopWatch(); stopWatch.start(); for(;;) { try { verify(easyMockProxy); break; } catch (AssertionError e) { if ( stopWatch.getTime() &gt; maxWait_ms ) throw e; Thread.sleep(100); } } } /** Returns a path to a directory in the temp dir with the name of the given * class. This is useful for temporary test files. * @param aClass test class for which to create dir * @return the path */ static public String getTestDirPathForTestClass(Object object) { String filename = object instanceof Class ? ((Class)object).getName() : object.getClass().getName(); return DRFileUtils.getTempDir() + File.separator + filename; } static public byte[] createRandomByteArray(int bytesLength) { byte[] sourceBytes = new byte[bytesLength]; random.nextBytes(sourceBytes); return sourceBytes; } /** Returns &lt;code&gt;true&lt;/code&gt; if the given object is an EasyMock mock object */ static public boolean isEasyMockMock(Object object) { try { InvocationHandler invocationHandler = Proxy .getInvocationHandler(object); return invocationHandler.getClass().getName().contains("easymock"); } catch (IllegalArgumentException e) { return false; } } } </code></pre> <p>Listing 3:</p> <pre><code>@Test public void testSomething() { final AtomicBoolean called = new AtomicBoolean(false); subject.setCallback(new SomeCallback() { public void callback(Object arg) { // check arg here called.set(true); } }); subject.run(); assertTrue(called.get()); } </code></pre> http://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection/122128#122128 5 Answer by Kevin Wong for Java: What is the best way to filter a Collection? Kevin Wong 2008-09-23T16:28:43Z 2008-09-23T16:28:43Z <p>org.apache.commons.collections.CollectionUtils#filter(Collection,Predicate)</p> http://stackoverflow.com/questions/108692/is-there-a-java-unit-test-framework-that-auto-tests-getters-and-setters/109871#109871 0 Answer by Kevin Wong for Is there a Java unit-test framework that auto-tests getters and setters? Kevin Wong 2008-09-21T00:19:48Z 2008-09-21T00:19:48Z <p><a href="http://www.unitils.org" rel="nofollow">Unitils</a> does this w/ the static method <code>assertRefEquals</code>.</p> http://stackoverflow.com/questions/24596/what-web-application-framework-for-java-is-recommended/55818#55818 1 Answer by Kevin Wong for What Web Application Framework for Java is Recommended? Kevin Wong 2008-09-11T04:43:14Z 2008-09-11T04:43:14Z <p>Can't believe no one has mentioned GWT</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/55763#55763 8 Answer by Kevin Wong for Hidden features of Eclipse Kevin Wong 2008-09-11T03:33:33Z 2008-09-11T03:33:33Z <p>Alt-UP or Alt-DOWN to move lines</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/55761#55761 6 Answer by Kevin Wong for Hidden features of Eclipse Kevin Wong 2008-09-11T03:31:35Z 2008-09-11T03:31:35Z <p>Ctrl-Alt-UP or Ctrl-Alt-DOWN to copy lines</p> http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/55736#55736 3 Answer by Kevin Wong for Overriding equals and hashCode in Java Kevin Wong 2008-09-11T03:06:45Z 2008-09-11T03:06:45Z <p>For an inheritance-friendly implementation, check out Tal Cohen's solution: [<a href="http://www.ddj.com/java/184405053" rel="nofollow">http://www.ddj.com/java/184405053</a>][1]</p> <p>Summary:</p> <p>In his book Effective Java Programming Language Guide (Addison-Wesley, 2001), Joshua Bloch claims that "There is simply no way to extend an instantiable class and add an aspect while preserving the equals contract." Tal disagrees.</p> <p>His solution is to implement equals() by calling another nonsymmetric blindlyEquals() both ways. blindlyEquals() is overridden by subclasses, equals() is inherited, and never overridden.</p> <p>Example:</p> <pre><code>class Point { private int x; private int y; protected boolean blindlyEquals(Object o) { if (!(o instanceof Point)) return false; Point p = (Point)o; return (p.x == this.x &amp;&amp; p.y == this.y); } public boolean equals(Object o) { return (this.blindlyEquals(o) &amp;&amp; o.blindlyEquals(this)); } } class ColorPoint extends Point { private Color c; protected boolean blindlyEquals(Object o) { if (!(o instanceof ColorPoint)) return false; ColorPoint cp = (ColorPoint)o; return (super.blindlyEquals(cp) &amp;&amp; cp.color == this.color); } } </code></pre> <p>Note that equals() must work across inheritance hierarchies if the Liskov Substitution Principle is to be satisfied.</p> http://stackoverflow.com/questions/15496/hidden-features-of-java/55679#55679 40 Answer by Kevin Wong for Hidden Features of Java Kevin Wong 2008-09-11T02:09:12Z 2008-09-11T02:09:12Z <p>The type params for generic methods can be specified explicitly like so:</p> <pre><code>Collections.&lt;String,Integer&gt;emptyMap() </code></pre> http://stackoverflow.com/questions/15496/hidden-features-of-java/55616#55616 48 Answer by Kevin Wong for Hidden Features of Java Kevin Wong 2008-09-11T01:15:19Z 2008-09-11T01:15:19Z <p>JDK 1.6_07+ contains an app called VisualVM (bin/jvisualvm.exe) that is a nice GUI on top of many of the tools. It seems more comprehensive than JConsole.</p> http://stackoverflow.com/questions/1309879/java-service-wrapper-3-2-3-on-mac-os-x-64-bit Comment by Kevin Wong on Java Service Wrapper 3.2.3 on Mac OS X 64-bit Kevin Wong 2009-08-21T03:05:48Z 2009-08-21T03:05:48Z Oh, and I tried renaming libwrapper-macosx-universal-32.jnilib to libwrapper-macosx-universal-64.jnilib, but JSW complains about that too. Apparently you can't run a 64-bit version of the wrapper on a 64-bit JVM. http://stackoverflow.com/questions/174774/java-are-concurrent-reads-and-writes-possible-on-a-blocking-socketchannel-via-ob/179806#179806 Comment by Kevin Wong on Java: Are concurrent reads and writes possible on a blocking SocketChannel via Object(In|Out)putStreams? Kevin Wong 2008-10-08T13:49:19Z 2008-10-08T13:49:19Z Come to think of it, I wonder if the wrapping the SocketChannel in a dummy ByteChannel as per the workaround described in one of the other answers will obviate the transferTo performance benefits as well. http://stackoverflow.com/questions/174774/java-are-concurrent-reads-and-writes-possible-on-a-blocking-socketchannel-via-ob/179806#179806 Comment by Kevin Wong on Java: Are concurrent reads and writes possible on a blocking SocketChannel via Object(In|Out)putStreams? Kevin Wong 2008-10-07T19:57:40Z 2008-10-07T19:57:40Z I think <code>transferTo</code> only has performance benefits if the <code>WritableByteChannel</code> is a true NIO class for which it has specific support, not a wrapper of a regular IO class. Not sure, tho. http://stackoverflow.com/questions/174774/java-are-concurrent-reads-and-writes-possible-on-a-blocking-socketchannel-via-ob/175025#175025 Comment by Kevin Wong on Java: Are concurrent reads and writes possible on a blocking SocketChannel via Object(In|Out)putStreams? Kevin Wong 2008-10-06T16:48:09Z 2008-10-06T16:48:09Z I tried changing it to use socketChannel.socket().get(Out|In)putStream, but it made no difference. The OutputStream seems to be of the same type as before: the anonymous inner class returned by Channels#newOutputStream(OutputStream). http://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection/122207#122207 Comment by Kevin Wong on Java: What is the best way to filter a Collection? Kevin Wong 2008-09-25T18:18:52Z 2008-09-25T18:18:52Z ^ ...that does what I want ^ http://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection/122207#122207 Comment by Kevin Wong on Java: What is the best way to filter a Collection? Kevin Wong 2008-09-25T18:18:09Z 2008-09-25T18:18:09Z Yeah, but I hate to reinvent the wheel, again, repeatedly. I'd rather find some utility library that does when I want. http://stackoverflow.com/questions/133879/how-should-one-go-about-choosing-a-default-tcp-ip-port-for-a-new-service/133891#133891 Comment by Kevin Wong on How should one go about choosing a default TCP/IP port for a new service? Kevin Wong 2008-09-25T15:21:19Z 2008-09-25T15:21:19Z But wouldn't using a dynamic port leave me open to intermittent (although rare) port conflicts? Perhaps it is safer to use a port in the registered range that is unassigned or assigned to an obscure app. http://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection/122139#122139 Comment by Kevin Wong on Java: What is the best way to filter a Collection? Kevin Wong 2008-09-23T18:25:00Z 2008-09-23T18:25:00Z ya, I knew about the Google collections lib. The version I was using didn't have Collections2 in it. I added a new answer to this question that lists the specific method. http://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection/122128#122128 Comment by Kevin Wong on Java: What is the best way to filter a Collection? Kevin Wong 2008-09-23T16:30:05Z 2008-09-23T16:30:05Z this is okay, but it's no generic, and modifies the collection in place (not nice) http://stackoverflow.com/questions/105544/most-important-problem-solved-by-ejb-3/105712#105712 Comment by Kevin Wong on Most important problem solved by EJB 3? Kevin Wong 2008-09-20T03:39:41Z 2008-09-20T03:39:41Z Spring's IoC/DI framework is much more generic and powerful than EJB3's, and includes many other features, e.g., AOP. I'm not saying EJB3 is bad, but characterizing it as containing a simpler superset of Spring functionality isn't accurate. http://stackoverflow.com/questions/25449/how-to-create-a-pluginable-java-program/25607#25607 Comment by Kevin Wong on How to create a pluginable Java program? Kevin Wong 2008-09-19T20:51:25Z 2008-09-19T20:51:25Z Note that the sun.misc.Service class has been superseded by the class java.util.ServiceLoader. http://stackoverflow.com/questions/56954/easymock-how-do-i-create-a-mock-of-a-genericized-class-without-a-warning/57247#57247 Comment by Kevin Wong on EasyMock: How do I create a mock of a genericized class without a warning? Kevin Wong 2008-09-12T14:34:17Z 2008-09-12T14:34:17Z yeah, but that leaves me feeling cheap