User Kevin Wong - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T15:49:51Zhttp://stackoverflow.com/feeds/user/4792http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1309879/java-service-wrapper-3-2-3-on-mac-os-x-64-bit0Java Service Wrapper 3.2.3 on Mac OS X 64-bitKevin Wong2009-08-21T02:53:03Z2009-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-close6Java: How do detect a remote side socket close?Kevin Wong2008-09-30T02:58:18Z2009-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-strings0What are the Java regular expressions for matching IPv4 and IPv6 strings?Kevin Wong2008-09-05T16:08:18Z2009-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#1227730Answer by Kevin Wong for Java: What is the best way to filter a Collection?Kevin Wong2008-09-23T18:21:13Z2009-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-collection7Java: What is the best way to filter a Collection?Kevin Wong2008-09-23T16:26:26Z2009-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-methodology8How do you use FogBugz with an Agile methodology?Kevin Wong2008-09-11T02:29:25Z2009-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#13199230Answer by Kevin Wong for Java Service Wrapper 3.2.3 on Mac OS X 64-bitKevin Wong2009-08-24T00:00:30Z2009-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-testing7What is the best reason for unit testing?Kevin Wong2008-09-25T19:20:32Z2009-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-an2How do I exclude a specific method/constructor from the results of the javadoc Ant task?Kevin Wong2009-07-13T16:13:42Z2009-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#11212721Answer by Kevin Wong for How do I exclude a specific method/constructor from the results of the javadoc Ant task?Kevin Wong2009-07-13T18:36:15Z2009-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-security4Jar securityKevin Wong2008-10-28T18:18:23Z2009-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#1070360Answer by Kevin Wong for RMI server: rmiregistry or LocateRegistry.createRegistryKevin Wong2008-09-20T03:57:16Z2009-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-ob3Java: Are concurrent reads and writes possible on a blocking SocketChannel via Object(In|Out)putStreams?Kevin Wong2008-10-06T15:31:58Z2009-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-warning3EasyMock: How do I create a mock of a genericized class without a warning?Kevin Wong2008-09-11T15:49:09Z2008-12-28T12:10:13Z
<p>The code</p>
<pre><code>private SomeClass<Integer> 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<Integer>".</p>
http://stackoverflow.com/questions/174774/java-are-concurrent-reads-and-writes-possible-on-a-blocking-socketchannel-via-ob/179104#1791041Answer by Kevin Wong for Java: Are concurrent reads and writes possible on a blocking SocketChannel via Object(In|Out)putStreams?Kevin Wong2008-10-07T15:41:00Z2008-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#1731250Answer by Kevin Wong for Java: Save objects in a textfile? Are there readymade solutions?Kevin Wong2008-10-06T03:29:55Z2008-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#1356291Answer by Kevin Wong for What is the best reason for unit testing?Kevin Wong2008-09-25T19:58:05Z2008-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-service12How should one go about choosing a default TCP/IP port for a new service?Kevin Wong2008-09-25T15:08:26Z2008-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#13388813Answer by Kevin Wong for How should one go about choosing a default TCP/IP port for a new service?Kevin Wong2008-09-25T15:10:16Z2008-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#13385010Answer by Kevin Wong for Hidden features of EclipseKevin Wong2008-09-25T15:02:24Z2008-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#1255281Answer by Kevin Wong for Managed language for scientific computing softwareKevin Wong2008-09-24T05:15:27Z2008-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#1254872Answer by Kevin Wong for How should I unit test threaded code?Kevin Wong2008-09-24T04:58:52Z2008-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&S_TACT=105AGX59&S_CMP=GR&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() > maxWait_ms ) {
closure.execute(argument);
}
}
}
/** Calls {@link #waitForVerify(Integer, Object)} with <code>null</code>
* 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. <code>null</code> 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() > 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 <code>true</code> 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#1221285Answer by Kevin Wong for Java: What is the best way to filter a Collection?Kevin Wong2008-09-23T16:28:43Z2008-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#1098710Answer by Kevin Wong for Is there a Java unit-test framework that auto-tests getters and setters?Kevin Wong2008-09-21T00:19:48Z2008-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#558181Answer by Kevin Wong for What Web Application Framework for Java is Recommended?Kevin Wong2008-09-11T04:43:14Z2008-09-11T04:43:14Z<p>Can't believe no one has mentioned GWT</p>
http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/55763#557638Answer by Kevin Wong for Hidden features of EclipseKevin Wong2008-09-11T03:33:33Z2008-09-11T03:33:33Z<p>Alt-UP or Alt-DOWN to move lines</p>
http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/55761#557616Answer by Kevin Wong for Hidden features of EclipseKevin Wong2008-09-11T03:31:35Z2008-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#557363Answer by Kevin Wong for Overriding equals and hashCode in JavaKevin Wong2008-09-11T03:06:45Z2008-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 && p.y == this.y);
}
public boolean equals(Object o) {
return (this.blindlyEquals(o) && 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) &&
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#5567940Answer by Kevin Wong for Hidden Features of JavaKevin Wong2008-09-11T02:09:12Z2008-09-11T02:09:12Z<p>The type params for generic methods can be specified explicitly like so:</p>
<pre><code>Collections.<String,Integer>emptyMap()
</code></pre>
http://stackoverflow.com/questions/15496/hidden-features-of-java/55616#5561648Answer by Kevin Wong for Hidden Features of JavaKevin Wong2008-09-11T01:15:19Z2008-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-bitComment by Kevin Wong on Java Service Wrapper 3.2.3 on Mac OS X 64-bitKevin Wong2009-08-21T03:05:48Z2009-08-21T03:05:48ZOh, 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#179806Comment by Kevin Wong on Java: Are concurrent reads and writes possible on a blocking SocketChannel via Object(In|Out)putStreams?Kevin Wong2008-10-08T13:49:19Z2008-10-08T13:49:19ZCome 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#179806Comment by Kevin Wong on Java: Are concurrent reads and writes possible on a blocking SocketChannel via Object(In|Out)putStreams?Kevin Wong2008-10-07T19:57:40Z2008-10-07T19:57:40ZI 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#175025Comment by Kevin Wong on Java: Are concurrent reads and writes possible on a blocking SocketChannel via Object(In|Out)putStreams?Kevin Wong2008-10-06T16:48:09Z2008-10-06T16:48:09ZI 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#122207Comment by Kevin Wong on Java: What is the best way to filter a Collection?Kevin Wong2008-09-25T18:18:52Z2008-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#122207Comment by Kevin Wong on Java: What is the best way to filter a Collection?Kevin Wong2008-09-25T18:18:09Z2008-09-25T18:18:09ZYeah, 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#133891Comment by Kevin Wong on How should one go about choosing a default TCP/IP port for a new service?Kevin Wong2008-09-25T15:21:19Z2008-09-25T15:21:19ZBut 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#122139Comment by Kevin Wong on Java: What is the best way to filter a Collection?Kevin Wong2008-09-23T18:25:00Z2008-09-23T18:25:00Zya, 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#122128Comment by Kevin Wong on Java: What is the best way to filter a Collection?Kevin Wong2008-09-23T16:30:05Z2008-09-23T16:30:05Zthis 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#105712Comment by Kevin Wong on Most important problem solved by EJB 3?Kevin Wong2008-09-20T03:39:41Z2008-09-20T03:39:41ZSpring'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#25607Comment by Kevin Wong on How to create a pluginable Java program?Kevin Wong2008-09-19T20:51:25Z2008-09-19T20:51:25ZNote 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#57247Comment by Kevin Wong on EasyMock: How do I create a mock of a genericized class without a warning?Kevin Wong2008-09-12T14:34:17Z2008-09-12T14:34:17Zyeah, but that leaves me feeling cheap