User Tom Hawtin - tackline - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T13:54:10Zhttp://stackoverflow.com/feeds/user/4725http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1810954/java-is-there-an-inbuilt-function-for-concatenating-the-strings-in-a-string/1810967#18109674Answer by Tom Hawtin - tackline for Java - is there an Inbuilt function for concatenating the Strings in a String[]?Tom Hawtin - tackline2009-11-27T23:19:13Z2009-11-27T23:28:56Z<p>No, not in the current Java library.</p>
<p>In JDK7 you should be able to write <code>String.join("", strings)</code>. It was found that "85%" of the uses for wanting an index in the posh for loop was to do a string join (which you can do without anyway).</p>
<p>I guess if you want to be uber efficient, you could write it as something like:</p>
<pre><code>public static String concat(String... strs) {
int size = 0;
for (String str : strs) {
size += str.length;
}
final char[] cs = new char[size];
int off = 0;
try {
for (String str : strs) {
int len = str.length();
str.getChars(0, len, cs, off);
off += len;
}
} catch (ArrayIndexOutOfBoundsException exc) {
throw new ConcurrentModificationException(exc);
}
if (off != cs.length) {
throw new ConcurrentModificationException();
}
return new String(cs);
}
</code></pre>
<p>(Not compiled or tested, of course.)</p>
http://stackoverflow.com/questions/1806658/class-forname-not-working-in-java-rmi-call/1807035#18070350Answer by Tom Hawtin - tackline for Class.forName not working in Java RMI callTom Hawtin - tackline2009-11-27T06:07:16Z2009-11-27T06:07:16Z<p>The probable cause is that your don't have permissions to either load the driver or connect to the remote database. Roughly speaking, all the frames on the stack and for the point the current thread was created must have the required permissions (<code>java.security.AccessController.doPrivileged</code> can be used to play about with this). There are some debug option that can be set through system properties for showing security checks (see the source in or around <code>AccessController</code>).</p>
<p>I am unsure as to where you are trying to make the connection. If it is from code dynamically loaded by RMI, that's a weird thing to do.</p>
<p>You can get a full stack trace from an exception with <code>exc.printStackTrace()</code>.</p>
http://stackoverflow.com/questions/1806273/how-do-i-make-one-java-thread-return-before-some-of-its-child-threads-finish/1806431#18064315Answer by Tom Hawtin - tackline for How do I make one Java thread return before some of its child threads finish?Tom Hawtin - tackline2009-11-27T01:43:21Z2009-11-27T01:43:21Z<p>There are some common mistakes when dealing with <code>java.lang.Thread</code>.</p>
<ul>
<li>Calling <code>run</code> on the thread instead of <code>start</code>. This is nothing magical about the <code>run</code> method.</li>
<li>Calling static methods on thread instances. Unfortunately this compiles. A common example is <code>Thread.sleep</code>. <code>sleep</code> is a static method and will always sleep the current thread, even if the code appears to be calling it on a different thread.</li>
</ul>
<p>Rather than dealing with threads directly it is generally better to use a thread pool from <code>java.util.concurrent</code>.</p>
http://stackoverflow.com/questions/1806198/detect-months-with-31-days/1806240#18062405Answer by Tom Hawtin - tackline for Detect months with 31 daysTom Hawtin - tackline2009-11-27T00:17:20Z2009-11-27T00:17:20Z<p>A rather literal translation into Java would be:</p>
<pre><code>if (Arrays.binarySearch(new int[] { 4, 6, 9, 11 }, month)) {
</code></pre>
<p>I don't know what is so special about 4, 6, 9 and 11. You are probably better off using an enum, together with <code>EnumSet</code> or perhaps a method on the enum. OTOH, perhaps JodaTime does something useful.</p>
http://stackoverflow.com/questions/1806109/accessing-an-outer-class-from-inside-a-listener/1806130#18061303Answer by Tom Hawtin - tackline for Accessing an outer class from inside a listener?Tom Hawtin - tackline2009-11-26T23:37:28Z2009-11-26T23:37:28Z<p><code>A.this</code>.</p>
<p>(It is rare that the inner class <code>this</code> is useful. Indeed it is relatively common to have bugs where the wrong <code>this</code> was used. So it is unfortunate that it is the default. Not about to change after 12 years.)</p>
http://stackoverflow.com/questions/1801723/how-to-convert-map-to-object/1801755#18017554Answer by Tom Hawtin - tackline for How to Convert Map to ObjectTom Hawtin - tackline2009-11-26T05:48:59Z2009-11-26T05:48:59Z<p>Whilst it is possible to create classes at runtime with custom class loaders, it is relatively pointless. How would you access the fields (other than reflection and other dynamically created classes)?</p>
http://stackoverflow.com/questions/1796144/java-snippet-that-causes-stack-overflow-in-the-compiler-or-typechecker-javac/1796563#17965632Answer by Tom Hawtin - tackline for Java snippet that causes stack overflow in the compiler or typechecker (javac)? Tom Hawtin - tackline2009-11-25T12:20:04Z2009-11-25T12:20:04Z<p>Have you tried bugs.sun.com? Here's a <code>StackOverflowError</code> in 5.0 only:</p>
<pre><code>import java.util.*;
class Test<T extends Comparable<? super T>> {
abstract class Group<E extends Comparable<? super E>>
extends ArrayList<E>
implements Comparable<Group<? extends E>> {}
abstract class Sequence<E extends Comparable<? super E>>
extends TreeSet<E>
implements Comparable<Sequence<? extends E>> {}
public void containsCombination(SortedSet<Group<T>> groups,
SortedSet<Sequence<T>> sequences) {
foo(groups, sequences);
}
<C extends Collection<T>> void foo(SortedSet<? extends C> setToCheck,
SortedSet<? extends C> validSet) {}
}
</code></pre>
<p>Here's another (again 5.0 only):</p>
<pre><code>class F<T> {}
class C<X extends F<F<? super X>>> {
C(X x) {
F<? super X> f = x;
}
}
</code></pre>
http://stackoverflow.com/questions/1794445/getresourceasstream-works-differently-on-mac-osx-vs-windows-7/1795261#17952612Answer by Tom Hawtin - tackline for getResourceAsStream works differently on Mac OSX vs. Windows 7?Tom Hawtin - tackline2009-11-25T07:37:52Z2009-11-25T07:37:52Z<p>The separator in resource names is always '/'. <code>File.separator</code> varies from platform to platform (on UNIX variants it will generally be <code>/</code>, on Windows it will not).</p>
http://stackoverflow.com/questions/1794651/cancel-a-read-from-an-inputstream/1795237#17952371Answer by Tom Hawtin - tackline for cancel a read from an InputStreamTom Hawtin - tackline2009-11-25T07:31:29Z2009-11-25T07:31:29Z<p>If you have some kind of "main" thread, then you should perform I/O off of it. Have a thread dedicated to reading and to some extends processing the input. Either queue the results to the main thread if event based, on modify the model if using a shared state design.</p>
http://stackoverflow.com/questions/1793856/whats-a-good-place-to-save-a-file-to-in-a-java-app/1794097#17940974Answer by Tom Hawtin - tackline for What's a good place to save a file to in a Java app?Tom Hawtin - tackline2009-11-25T01:26:10Z2009-11-25T01:26:10Z<p>I strongly suggest using the <a href="http://java.sun.com/javase/6/docs/jre/api/javaws/jnlp/javax/jnlp/PersistenceService.html" rel="nofollow"><code>PersistenceService</code></a>.</p>
http://stackoverflow.com/questions/1793459/java-security-manager/1794091#17940911Answer by Tom Hawtin - tackline for java security managerTom Hawtin - tackline2009-11-25T01:23:42Z2009-11-25T01:23:42Z<p>There appears to be two problems there.</p>
<p>Firstly, as Yishai says, <code>File.toURI</code> appears to need to check that the file <em>without the trailing separator</em> is a directory. This is probably a bug.</p>
<p>Secondly, the wildcard for recursive subdirectories is '-' not '*'.</p>
<p>So your policy file needs to look like:</p>
<pre><code>grant {
permission java.io.FilePermission "C:\\class\\-", "read";
permission java.io.FilePermission "C:\\class", "read";
permission java.lang.RuntimePermission "createClassLoader";
};
</code></pre>
<p>Also, if you use <code>URLClassLoader.newInstance</code>, you don't need <code>createClassLoader</code> permissions, and you get a completed class loader implementation.</p>
http://stackoverflow.com/questions/1791687/do-all-hash-based-datastructures-in-java-use-the-bucket-concept/1791786#17917865Answer by Tom Hawtin - tackline for Do all Hash-based datastructures in java use the 'bucket' concept?Tom Hawtin - tackline2009-11-24T17:53:35Z2009-11-24T17:58:51Z<p>In Sun's current implementation of the Java library, <code>IdentityHashMap</code> and the internal implementation in <code>ThreadLocal</code> use probing structures.</p>
<p>The general problem with probing hash tables in Java is that <code>hashCode</code> and <code>equals</code> may be relatively expensive. Therefore you want to cache the hash value. You can't have an array that mixes references and primitives, so you'd need to do something relatively complicated. On the other hand, if you are using <code>==</code> to check matches, then you can check many references without a performance problem.</p>
<p>IIRC, Azul had a fast concurrent quadratic probing hash map.</p>
http://stackoverflow.com/questions/1790026/what-can-i-do-to-make-jar-classes-smaller/1790180#17901802Answer by Tom Hawtin - tackline for What can I do to make jar / classes smaller?Tom Hawtin - tackline2009-11-24T13:49:48Z2009-11-24T13:54:59Z<p><a href="http://java.sun.com/j2se/1.5.0/docs/guide/deployment/deployment-guide/pack200.html" rel="nofollow">pack200</a> (and gzip) produces much smaller files than jars (effectively zip files).</p>
http://stackoverflow.com/questions/1789713/where-can-i-find-source-code-for-the-java-data-structures/1789723#178972310Answer by Tom Hawtin - tackline for Where can I find source code for the Java data structures?Tom Hawtin - tackline2009-11-24T12:17:58Z2009-11-24T12:17:58Z<p><code>src.zip</code> inside the JDK.</p>
http://stackoverflow.com/questions/1742361/flush-in-java-io-filewriter/1744224#17442240Answer by Tom Hawtin - tackline for flush in java.io.FileWriter.Tom Hawtin - tackline2009-11-16T19:14:08Z2009-11-16T19:14:08Z<p><code>FileWriter</code> is an evil class as it picks up whatever character set happens to be there, rather than taking an explicit charset. Even if you do want the default, be explicit about it.</p>
<p>The usual solution is <code>OutputStreamWriter</code> and <code>FileOutputStream</code>. It is possible for the decorator to throw an exception. Therefore you need to be able to close the stream even if the writer was never constructed. If you are going to do that, you only need to flush the writer (in the happy case) and always close the stream. (Just to be confusing, some decorators, for instance for handling zips, have resources that do require closing.)</p>
http://stackoverflow.com/questions/1739799/doesnt-the-fact-that-go-and-java-use-user-space-thread-mean-that-you-cant-reall/1739832#17398325Answer by Tom Hawtin - tackline for Doesn't the fact that Go and Java use User space thread mean that you can't really take advantage of multiple core?Tom Hawtin - tackline2009-11-16T02:58:25Z2009-11-16T02:58:25Z<p>Most recent versions of Java to use OS threads, although there is not necessarily a one-to-one mapping with Java threads. Java clearly does work quite nicely across many hardware threads.</p>
http://stackoverflow.com/questions/1738071/problem-with-java-generics/1738096#17380961Answer by Tom Hawtin - tackline for Problem with Java genericsTom Hawtin - tackline2009-11-15T17:01:27Z2009-11-15T17:01:27Z<p>Suppose <code>tableA</code> was an <code>UltraTable<String></code> and <code>getAObjects</code> returned an <code>UltraTable<Integer></code>. You would have broken the type system.</p>
<p>Possibly what you might want to do is to genericise <code>AShell</code>:</p>
<pre><code>class AShell<T extends ObjectA> {
private UltraTable<T> tableA;
public List<T> getAObjects() {
...
</code></pre>
http://stackoverflow.com/questions/1732242/java-is-there-support-for-macros/1732254#17322547Answer by Tom Hawtin - tackline for Java: Is there support for macros?Tom Hawtin - tackline2009-11-13T22:18:37Z2009-11-13T22:18:37Z<p>One technique is to put the code in an anonymous inner class, and pass that to a method that does the rest.</p>
<pre><code>interface SomeInterface {
void fn();
}
executeTask(new SomeInterface {
public void fn() {
// Change this line.
}
});
private void executeTask(final SomeInterface thing) {
Thread thread = new Thread(new Runnable() { public void run() {
//...
//...
//...
thing.fn();
//...
//...
}});
thread.start();
}
</code></pre>
<p>Generally it isn't a good idea to extend <code>Thread</code> or other classes if it is unnecessary.</p>
http://stackoverflow.com/questions/1725645/singletons-or-non-singletons-wrapped-by-a-singleton/1725811#17258111Answer by Tom Hawtin - tackline for Singletons or non-singletons wrapped by a SingletonTom Hawtin - tackline2009-11-12T22:19:47Z2009-11-12T22:19:47Z<p>I think you are on the right track, but push it further. Go right back to your root of your program and you only need one singleton. There's a logical step after that too.</p>
http://stackoverflow.com/questions/1725252/problem-with-mouselistener-on-jpanel/1725588#17255881Answer by Tom Hawtin - tackline for Problem with mouseListener on JPanelTom Hawtin - tackline2009-11-12T21:35:58Z2009-11-12T21:35:58Z<p>The problem looks as if it might be in this unnecessary code:</p>
<pre><code>Point p = e.getPoint();
if((panel.getBounds().contains(p))
</code></pre>
<p>The mouse listener is on the panel, so the mouse coordinates will be relative to the panel top left. <code>panel.getBounds()</code> gets the bounds of the panel relative to whatever its parent container is.</p>
<p>It's worth noting the mouse event behave very strangely. They "bubble up" until they hit a component with a mouse listener attached. So, adding a mouse listener actually changes the behaviour of a component. Adding the listener to a parent will potentially miss events depending upon the exact way the component is set up (which may change arbitrarily). There are a number of ways around this, none of them good.</p>
http://stackoverflow.com/questions/1721568/size-of-reference-of-an-class-in-java/1721868#17218681Answer by Tom Hawtin - tackline for Size of reference of an class in JAVATom Hawtin - tackline2009-11-12T12:32:09Z2009-11-12T12:32:09Z<p>As far as bytecode is concerned, a reference behaves much the same as an <code>int</code> or <code>float</code>. <code>long</code> and <code>double</code> take up two stack slots. So it's as if references are four bytes. However, 64-bit systems often munge this so that they can use 64-bit pointers.</p>
<p>Some JVMs (I believe BEA JRockit for some time and recently added to Sun's) use "compressed oops" which is 32-bits which gets shifted left a few places to enable access tens of GB of memory on 64-bit systems. As well as reducing memory consumption, reducing the reference size also reduces the CPU-memory bandwidth and cache requirements, improving performance despite the extra fiddling.</p>
<p>I believe Azul's version of Hotspot uses 64-bit references, with 48-bits for address and 16-bit type information.</p>
http://stackoverflow.com/questions/1721109/type-of-template-if-the-template-is-the-return-value-java/1721167#17211670Answer by Tom Hawtin - tackline for Type of template if the template is the return value (Java)Tom Hawtin - tackline2009-11-12T09:58:33Z2009-11-12T09:58:33Z<p>In the question's example, the return type is <code>T</code>. The erased type will be <code>Object</code> as, implicitly, <code>T extends Object</code>. The actual cast is performed in the bytecode of the calling method (you can use <code>javap -c</code> to see that).</p>
<p>Generally, you should keep the number of "top-level" objects in sessions as small as possible. One of the benefits of doing that, is there is no longer a need for hacky methods like these.</p>
http://stackoverflow.com/questions/1715036/how-do-i-create-a-java-sandbox/1715181#17151811Answer by Tom Hawtin - tackline for How do i create a java sandbox?Tom Hawtin - tackline2009-11-11T13:31:29Z2009-11-11T13:31:29Z<p>For an AWT/Swing application you need to use non-standard <code>AppContext</code> class, which could change at any time. So, to be effective you would need to start another process to run plug-in code, and deal with communication between the two (a little like Chrome). The plug-in process will need a <code>SecurityManager</code> set and a <code>ClassLoader</code> to both isolate the plug-in code and apply an appropriate <code>ProtectionDomain</code> to plug-in classes.</p>
http://stackoverflow.com/questions/1714674/java-and-memory-layout/1714780#17147800Answer by Tom Hawtin - tackline for java and memory layoutTom Hawtin - tackline2009-11-11T12:05:28Z2009-11-11T12:05:28Z<p><code>foo</code> the reference is on the stack. The <em>object</em> pointed to by <code>foo</code> is on the heap (it may actually be optimised onto the stack in simple cases, but conceptually it is on the heap).</p>
<p>The object's class may have superclasses and implement interfaces. However, whichever class a field is declared in, instances fields are all kept in the same allocation of memory on the heap.</p>
http://stackoverflow.com/questions/1709816/fowler-null-object-pattern-why-use-inheritance/1710485#17104850Answer by Tom Hawtin - tackline for Fowler Null Object Pattern: Why use inheritance?Tom Hawtin - tackline2009-11-10T19:19:26Z2009-11-10T19:19:26Z<p>I'm not a C# programmer, but it looks like in your second example that you could do the equivalent of:</p>
<pre><code>Customer.NullCustomer.Name = "Not Null";
</code></pre>
<p>In general, objects have behaviour, not just data, so it becomes more complicated.</p>
http://stackoverflow.com/questions/1704333/steps-to-become-web-security-savvy/1704470#17044700Answer by Tom Hawtin - tackline for Steps to become web security savvyTom Hawtin - tackline2009-11-09T22:44:59Z2009-11-09T22:44:59Z<p>I recommend <a href="http://rads.stackoverflow.com/amzn/click/0321444426" rel="nofollow">The Art of Software Security Assessment</a> by Mark Dowd, John McDonald and Justin Schuh. It is big, but worth ploughing through.</p>
http://stackoverflow.com/questions/1702003/issue-with-zipped-streams-from-net-and-reading-them-from-java/1702129#17021292Answer by Tom Hawtin - tackline for Issue with Zipped Streams from .Net and reading them from JavaTom Hawtin - tackline2009-11-09T16:27:03Z2009-11-09T16:27:03Z<p>You shouldn't need to touch <code>Deflater</code>. <code>Deflater</code> deals with decompressing individual entries within the zip file.</p>
<p><a href="http://java.sun.com/javase/6/docs/api/java/util/zip/ZipInputStream.html" rel="nofollow"><code>ZipInputStream</code></a> is the odd class to go for. There is also <a href="http://java.sun.com/javase/6/docs/api/java/util/zip/ZipFile.html" rel="nofollow"><code>ZipFile</code></a> if you really need to go for random access to an actual file (for many reasons, I wouldn't recommend it).</p>
http://stackoverflow.com/questions/1685291/generics-calling-constructor/1685352#16853521Answer by Tom Hawtin - tackline for generics calling constructorTom Hawtin - tackline2009-11-06T04:11:55Z2009-11-06T04:11:55Z<p>Probably the closest thing you could get whilst retaining static type safety and having lazy construction is:</p>
<pre><code>public static void main(String[] args) {
X<?> x;
x = aFactory("Hello").makeX();
x.foo();
x = bFactory(42).makeX();
x.foo();
}
private static XFactory aFactory(final String value) {
return new XFactory() { public X<?> makeX() {
return new A(value);
}};
}
public static XFactory bFactory(final Integer value) {
return new XFactory() { public X<?> makeX() {
return new B(value);
}};
}
interface XFactory() {
X<?> makeX();
}
</code></pre>
<p>So we create an instance of an abstract factory that creates the appropriate instance with the appropriate argument. As a factory, the product is only constructed on demand.</p>
<p>Clearly something had to give. What would you expect <code>XFactory.makeX(1, "Hello")</code> to do?</p>
http://stackoverflow.com/questions/1685081/java-type-mismatch-cannot-convert-from-collectionseticonnection-to-iterator/1685306#16853061Answer by Tom Hawtin - tackline for JAVA: Type mismatch: cannot convert from Collection<Set<IConnection>> to Iterator<IConnection>Tom Hawtin - tackline2009-11-06T03:51:10Z2009-11-06T03:51:10Z<p>What you appear to have here is an unstable API. </p>
<p>Is it <a href="http://dl.fancycode.com/red5/api/org/red5/server/api/IScope.html#getConnections%28%29" rel="nofollow"><code>Iterator<IConnection> getConnections()</code></a> or <a href="http://api.red5.nl/org/red5/server/api/IScope.html#getConnections%28%29" rel="nofollow"><code>Collection<Set<IConnection>> getConnections()</code></a> (nicely documents as "Get a connection iterator." - comments lie)? Google is your friend.</p>
http://stackoverflow.com/questions/1683610/can-a-thread-observe-junk-values-in-an-object-due-to-memory-incoherency/1683888#16838882Answer by Tom Hawtin - tackline for Can a thread observe junk values in an object due to memory incoherency?Tom Hawtin - tackline2009-11-05T21:47:37Z2009-11-05T21:47:37Z<p>Generally you should have <em>happens-before</em> relationships when threads interact. For instance, as provided by concurrent queues. There is not necessarily any need for finer synchronisation.</p>
<p>The rare case of passing objects between threads without <em>happens-before</em> relationships is known as unsafe publication. There are rules surrounding the use of <code>final</code> fields that allow this to be made safe. However, you should very rarely find yourself wanting to rely upon that.</p>
<p>There is always a <em>happens-before</em> relationship between invoking <code>start</code> on a thread, and the execution of the thread. So if an object is safely published to the starting thread before starting, the started thread will also see the object coherently.</p>
http://stackoverflow.com/questions/1814919/is-3d-game-development-hardest-thing-in-programmingComment by Tom Hawtin - tackline on Is 3d game development hardest thing in programming ?Tom Hawtin - tackline2009-11-29T08:10:49Z2009-11-29T08:10:49ZArgumentative? Perhaps a poor question, but I don't think a troll.http://stackoverflow.com/questions/1814900/locks-in-synchronized-blocksComment by Tom Hawtin - tackline on Locks in Synchronized Blocks.Tom Hawtin - tackline2009-11-29T07:43:46Z2009-11-29T07:43:46ZClasses are irrelevant as far as classes are concerned (except that, unfortunately, static methods marked as synchronized lock on the <code>Class</code> object - D'oh). Think of locks as another object that each object carries around a final reference to (it's a bad design!), locking an object doesn't mean that code that doesn't bother with the lock cannot access the object's fields.http://stackoverflow.com/questions/1577290/signed-java-applet-throws-security-exeption-on-connect-to-a-webservice/1808918#1808918Comment by Tom Hawtin - tackline on Signed Java Applet Throws Security Exeption on Connect to a WebserviceTom Hawtin - tackline2009-11-28T09:34:18Z2009-11-28T09:34:18ZIIRC, you couldn't back in 1.00, but you can (with sufficient privileges) now. I wish it didn't work. Some eejit decides that their applet wants to disable security, and it's disabled for every other applet out on the interwebs.http://stackoverflow.com/questions/1810954/java-is-there-an-inbuilt-function-for-concatenating-the-strings-in-a-string/1810967#1810967Comment by Tom Hawtin - tackline on Java - is there an Inbuilt function for concatenating the Strings in a String[]?Tom Hawtin - tackline2009-11-27T23:21:35Z2009-11-27T23:21:35ZIIRC, the last milestone is now due in September (of 2010).http://stackoverflow.com/questions/1808141/synchronizing-on-two-or-more-objects-javaComment by Tom Hawtin - tackline on Synchronizing on two or more objects (Java)Tom Hawtin - tackline2009-11-27T17:31:52Z2009-11-27T17:31:52Z(There is no point using <code>AtomicLong</code> in that code.)http://stackoverflow.com/questions/1808376/does-simulation-of-closures-in-java-make-senseComment by Tom Hawtin - tackline on Does simulation of closures in Java make sense?Tom Hawtin - tackline2009-11-27T17:27:40Z2009-11-27T17:27:40ZYour example is so simple that it doesn't actually close over any variables...http://stackoverflow.com/questions/1809007/best-way-to-detect-if-a-stream-is-zipped-in-java/1809111#1809111Comment by Tom Hawtin - tackline on Best way to detect if a stream is zipped in JavaTom Hawtin - tackline2009-11-27T17:22:06Z2009-11-27T17:22:06Z(Sorry, GIFARs.)http://stackoverflow.com/questions/1809007/best-way-to-detect-if-a-stream-is-zipped-in-java/1809111#1809111Comment by Tom Hawtin - tackline on Best way to detect if a stream is zipped in JavaTom Hawtin - tackline2009-11-27T17:21:08Z2009-11-27T17:21:08ZYou can have random junk prepended to zip files (such as Microsoft Windows executables). Those only work if you use the central directory rather than streaming with local headers. FWIW, the Java PlugIn and WebStart use the central directory but now check the first four bytes as well (see GIARs).http://stackoverflow.com/questions/1806198/detect-months-with-31-daysComment by Tom Hawtin - tackline on Detect months with 31 daysTom Hawtin - tackline2009-11-27T01:46:31Z2009-11-27T01:46:31ZIn SQL you can write <code>month IN (4, 6, 9, 11)</code> (or something, it's been many years since I've needed to touch SQL in anger).http://stackoverflow.com/questions/1806273/how-do-i-make-one-java-thread-return-before-some-of-its-child-threads-finishComment by Tom Hawtin - tackline on How do I make one Java thread return before some of its child threads finish?Tom Hawtin - tackline2009-11-27T00:47:40Z2009-11-27T00:47:40ZYou are calling <code>Thread.run</code> instead of <code>Thread.start</code> are you? That's a very common mistake (and a result of bad design of <code>Thread</code>).http://stackoverflow.com/questions/1806198/detect-months-with-31-days/1806240#1806240Comment by Tom Hawtin - tackline on Detect months with 31 daysTom Hawtin - tackline2009-11-27T00:40:18Z2009-11-27T00:40:18ZIt's difficult to tell that from the code.http://stackoverflow.com/questions/1803503/why-are-java-enums-not-clonable/1803677#1803677Comment by Tom Hawtin - tackline on Why are Java enums not clonable?Tom Hawtin - tackline2009-11-26T22:04:16Z2009-11-26T22:04:16ZWhy would you want to make <code>clone</code> public?http://stackoverflow.com/questions/1805481/data-access-object-singleton-or-many-small-onesComment by Tom Hawtin - tackline on Data Access object: Singleton or many small ones?Tom Hawtin - tackline2009-11-26T21:54:14Z2009-11-26T21:54:14ZDo you care about transactions?http://stackoverflow.com/questions/1011167/what-are-common-ui-misconceptions-and-annoyances/1019913#1019913Comment by Tom Hawtin - tackline on What are common UI misconceptions and annoyances?Tom Hawtin - tackline2009-11-26T09:44:19Z2009-11-26T09:44:19ZCoderTao: Same thing with Ubuntu on my netbook. Eejits.http://stackoverflow.com/questions/1011167/what-are-common-ui-misconceptions-and-annoyances/1011634#1011634Comment by Tom Hawtin - tackline on What are common UI misconceptions and annoyances?Tom Hawtin - tackline2009-11-26T09:27:03Z2009-11-26T09:27:03ZI wish Amazon wouldn't store my card details. Then there would not be a problem.