User Chris Mazzola - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T09:09:08Zhttp://stackoverflow.com/feeds/user/15816http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-used/82961#829615Answer by Chris Mazzola for What is the strangest programming language you have used?Chris Mazzola2008-09-17T13:08:41Z2009-11-18T22:18:20Z<p><a href="http://en.wikipedia.org/wiki/PostScript" rel="nofollow">PostScript</a>.</p>
<p>And ever since I've denied knowing anything about it. :P</p>
<p>Horrible. </p>
http://stackoverflow.com/questions/104799/why-arent-java-collections-remove-methods-generic10Why aren't Java Collections remove methods generic?Chris Mazzola2008-09-19T19:26:55Z2009-09-09T23:18:49Z
<p>Why isn't <a href="http://java.sun.com/javase/6/docs/api/java/util/Collection.html#remove(java.lang.Object)" rel="nofollow">Collection.remove(Object o)</a> generic? </p>
<p>Seems like <code>Collection<E></code> could have <code>boolean remove(E o);</code> </p>
<p>Then, when you accidentally try to remove (for example) <code>Set<String></code> instead of each individual String from a <code>Collection<String></code>, it would be a compile time error instead of a debugging problem later.</p>
http://stackoverflow.com/questions/1247154/if-statement-check-string-against-variable-or-variable-against-string/1247327#12473271Answer by Chris Mazzola for If-statement - Check String against variable or variable against String?Chris Mazzola2009-08-07T22:41:34Z2009-08-07T22:41:34Z<p>I tend to check for null:</p>
<pre><code>if(randomtext != null && randomtext.equals("stack overflow"))
{
//do something
}
</code></pre>
http://stackoverflow.com/questions/1039615/should-we-mask-passwords/1039953#103995313Answer by Chris Mazzola for Should We Mask Passwords?Chris Mazzola2009-06-24T18:03:09Z2009-07-08T22:07:29Z<p>Rather than having each website give you an option (or not) to mask your password, wouldn't it be better if the web browser gave you the choice, browser-wide? Or possibly even the operating system? Seems like site-control of this feature would be undesirable, since users' needs can be wildly different.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/83113#8311327Answer by Chris Mazzola for Hidden Features of JavaChris Mazzola2008-09-17T13:23:06Z2009-06-30T09:14:56Z<p>My favorite: dump all thread stack traces to standard out.</p>
<p>windows: <kbd>CTRL</kbd>-<kbd>Break</kbd> in your java cmd/console window</p>
<p>unix: <code>kill -3 PID</code></p>
http://stackoverflow.com/questions/512555/detect-windows-logout-in-java1Detect windows logout in JavaChris Mazzola2009-02-04T18:02:04Z2009-02-05T17:49:02Z
<p>Is there a library that I can use with Java to listen for user logout and possibly other Windows events? (Even better if it supports multiple platforms!)</p>
<p>I remember reading about a library of this sort a number of years ago, but can't seem to find it now. I've seen other threads to do essentially the same thing using Python with win32ts.</p>
<p>Also better if it's free and/or open source.</p>
<p>Thanks.</p>
<p>Note: The candidate solution of using Runtime.getRuntime().addShutdownHook(Thread) does not work correctly with javaw. I am still looking for a solution that will work with javaw. See java bug ids 4486580 and 4302814. Thanks --cam</p>
http://stackoverflow.com/questions/178479/alternatives-for-java-sql-preparedstatement-in-clause-issue7Alternatives for java sql PreparedStatement IN clause issue?Chris Mazzola2008-10-07T13:41:36Z2008-10-09T22:13:14Z
<p>I'm looking for the best workarounds for the PreparedStatement "IN clause" issue, which apparently is not supported for multiple values due to sql injection attack security issues: One ?, One value. Not a list of values.</p>
<p>To illustrate:</p>
<pre><code>select my_column from my_table where search_column in (?)
</code></pre>
<p>using <code>ps.setString(1, "'A', 'B', 'C'");</code> is essentially a non-working attempt at a workaround of the reasons for using ? in the first place. </p>
<p>Ideas for workarounds?</p>
<p>I don't want to have to execute the prepared statement multiple times, once for each search value (not using an IN clause), but that's where I am at this point.</p>
http://stackoverflow.com/questions/103848/what-is-your-favourite-area-of-the-java-api/104334#1043341Answer by Chris Mazzola for What is Your Favourite Area of the Java API?Chris Mazzola2008-09-19T18:29:22Z2008-09-19T18:29:22Z<p>java.util.regex</p>
<p>There are other packages I can't live without, but the regex package has to be in the top tier of "greatest additions to java" -- definitely right up there with Collections.</p>
http://stackoverflow.com/questions/83117/logging-activities-in-multithreaded-applications/83245#832450Answer by Chris Mazzola for Logging activities in multithreaded applicationsChris Mazzola2008-09-17T13:33:59Z2008-09-17T13:33:59Z<p>In Java5 (and later) you can call </p>
<pre><code>StackTraceElement[] stackTrace = Thread.currentThread().getStackTrace();
</code></pre>
<p>Inspect the stack trace to whatever depth you want and log accordingly.</p>
<p>In Java 1.4 you can get the same info with </p>
<pre><code>StackTraceElement[] stackTrace = new Exception().getStackTrace();
</code></pre>
http://stackoverflow.com/questions/1402005/how-to-check-if-internet-connection-is-present-in-java/1402020#1402020Comment by Chris Mazzola on How to check if internet connection is present in java?Chris Mazzola2009-09-09T23:21:06Z2009-09-09T23:21:06ZThe link to isReachable went to the wrong class. It's at <a href="http://java.sun.com/javase/6/docs/api/java/net/InetAddress.html#isReachable" rel="nofollow">java.sun.com/javase/6/…</a>http://stackoverflow.com/questions/1402505/in-php-can-you-instantiate-an-object-and-call-a-method-on-the-same-line/1402514#1402514Comment by Chris Mazzola on In PHP, can you instantiate an object and call a method on the same line?Chris Mazzola2009-09-09T22:43:30Z2009-09-09T22:43:30ZGreat answer :P Made me laugh.http://stackoverflow.com/questions/60160/how-to-escape-text-for-regular-expression-in-java/60164#60164Comment by Chris Mazzola on How to escape text for regular expression in JavaChris Mazzola2009-08-06T20:51:42Z2009-08-06T20:51:42ZI'm curious if there's any difference between this and using the LITERAL flag, since the javadoc says there is no embedded flag to switch LITERAL on and off: <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/regex/Pattern.html#LITERAL" rel="nofollow">java.sun.com/j2se/1.5.0/…</a>http://stackoverflow.com/questions/178479/alternatives-for-java-sql-preparedstatement-in-clause-issueComment by Chris Mazzola on Alternatives for java sql PreparedStatement IN clause issue?Chris Mazzola2009-07-08T21:51:40Z2009-07-08T21:51:40ZOscar, I think the dynamic generation of (?,?,....) is the simplest workaround if you need an IN clause, but I left it to individual calls since performance was sufficient in my specific case.http://stackoverflow.com/questions/512555/detect-windows-logout-in-java/512622#512622Comment by Chris Mazzola on Detect windows logout in JavaChris Mazzola2009-02-05T17:43:22Z2009-02-05T17:43:22ZUnfortunately, using a shutdown hook in Runtime does not work when using javaw.http://stackoverflow.com/questions/512555/detect-windows-logout-in-java/512660#512660Comment by Chris Mazzola on Detect windows logout in JavaChris Mazzola2009-02-05T17:42:35Z2009-02-05T17:42:35ZUnfortunately this does not work when using javaw.http://stackoverflow.com/questions/186964/java-core-api-anti-patterns-what-is-wrong/187674#187674Comment by Chris Mazzola on Java core API anti-Patterns. What is wrong?Chris Mazzola2008-10-09T16:48:49Z2008-10-09T16:48:49ZIt's simple. :Phttp://stackoverflow.com/questions/178479/alternatives-for-java-sql-preparedstatement-in-clause-issue/178517#178517Comment by Chris Mazzola on Alternatives for java sql PreparedStatement IN clause issue?Chris Mazzola2008-10-09T16:29:37Z2008-10-09T16:29:37ZBill, that solution is workable if I don't want to reuse the PreparedStatement. Another solution is to make the single param call multiple times and accumulate the results on the client side. Likely it would be more efficient to build/execute a new Statement with custom number of ? each time though.http://stackoverflow.com/questions/178479/alternatives-for-java-sql-preparedstatement-in-clause-issue/178650#178650Comment by Chris Mazzola on Alternatives for java sql PreparedStatement IN clause issue?Chris Mazzola2008-10-09T16:24:25Z2008-10-09T16:24:25ZYes, you're right. My goal in this case was to reuse the PreparedStatement with different numbers of items each time.http://stackoverflow.com/questions/178479/alternatives-for-java-sql-preparedstatement-in-clause-issue/178505#178505Comment by Chris Mazzola on Alternatives for java sql PreparedStatement IN clause issue?Chris Mazzola2008-10-09T16:21:52Z2008-10-09T16:21:52Z<a href="http://java.sun.com/j2se/1.3/docs/guide/jdbc/getstart/mapping.html#996857" rel="nofollow">java.sun.com/j2se/1.3/…</a>
According to Sun, Array content [typically] remains on the server side and is pulled as needed. PreparedStatement.setArray() can send back an Array from a previous ResultSet, not create a new Array on the client side.http://stackoverflow.com/questions/178479/alternatives-for-java-sql-preparedstatement-in-clause-issue/178517#178517Comment by Chris Mazzola on Alternatives for java sql PreparedStatement IN clause issue?Chris Mazzola2008-10-07T15:28:32Z2008-10-07T15:28:32ZNot really a solution for me since I want to send in a different number of ? each time I call the ps. But don't think I hadn't considered it. :Phttp://stackoverflow.com/questions/15496/hidden-features-of-java/15538#15538Comment by Chris Mazzola on Hidden Features of JavaChris Mazzola2008-10-07T12:36:32Z2008-10-07T12:36:32ZIt's really too bad this type of functionality isn't directly in the collections API.http://stackoverflow.com/questions/169815/java-common-gotchas/170049#170049Comment by Chris Mazzola on Java - Common GotchasChris Mazzola2008-10-04T13:52:18Z2008-10-04T13:52:18ZThe source code for Java's class library is always a fascinating read, whether for better or worse. ;)http://stackoverflow.com/questions/154248/how-to-add-an-attribute-to-an-xml-node-in-java-1-4Comment by Chris Mazzola on How to add an attribute to an XML node in Java 1.4Chris Mazzola2008-09-30T19:35:52Z2008-09-30T19:35:52ZWhat does mapNode.getClass().getName() report? If it's not an Element, knowing what it really is will help you solve your problem.http://stackoverflow.com/questions/143084/is-it-ok-to-have-an-empty-class-that-extends-another-class/143093#143093Comment by Chris Mazzola on Is it OK to have an 'empty' class that extends another class?Chris Mazzola2008-09-27T20:17:17Z2008-09-27T20:17:17ZYour answer isn't wrong in the case that you're indicating a property of the object... Without more information in the original question, it's impossible to say whether your option is better or worse than inheritance. Up from me. :P