User Chris Mazzola - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T09:09:08Z http://stackoverflow.com/feeds/user/15816 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-used/82961#82961 5 Answer by Chris Mazzola for What is the strangest programming language you have used? Chris Mazzola 2008-09-17T13:08:41Z 2009-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-generic 10 Why aren't Java Collections remove methods generic? Chris Mazzola 2008-09-19T19:26:55Z 2009-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&lt;E&gt;</code> could have <code>boolean remove(E o);</code> </p> <p>Then, when you accidentally try to remove (for example) <code>Set&lt;String&gt;</code> instead of each individual String from a <code>Collection&lt;String&gt;</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#1247327 1 Answer by Chris Mazzola for If-statement - Check String against variable or variable against String? Chris Mazzola 2009-08-07T22:41:34Z 2009-08-07T22:41:34Z <p>I tend to check for null:</p> <pre><code>if(randomtext != null &amp;&amp; randomtext.equals("stack overflow")) { //do something } </code></pre> http://stackoverflow.com/questions/1039615/should-we-mask-passwords/1039953#1039953 13 Answer by Chris Mazzola for Should We Mask Passwords? Chris Mazzola 2009-06-24T18:03:09Z 2009-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#83113 27 Answer by Chris Mazzola for Hidden Features of Java Chris Mazzola 2008-09-17T13:23:06Z 2009-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-java 1 Detect windows logout in Java Chris Mazzola 2009-02-04T18:02:04Z 2009-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-issue 7 Alternatives for java sql PreparedStatement IN clause issue? Chris Mazzola 2008-10-07T13:41:36Z 2008-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#104334 1 Answer by Chris Mazzola for What is Your Favourite Area of the Java API? Chris Mazzola 2008-09-19T18:29:22Z 2008-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#83245 0 Answer by Chris Mazzola for Logging activities in multithreaded applications Chris Mazzola 2008-09-17T13:33:59Z 2008-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#1402020 Comment by Chris Mazzola on How to check if internet connection is present in java? Chris Mazzola 2009-09-09T23:21:06Z 2009-09-09T23:21:06Z The 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/&hellip;</a> http://stackoverflow.com/questions/1402505/in-php-can-you-instantiate-an-object-and-call-a-method-on-the-same-line/1402514#1402514 Comment by Chris Mazzola on In PHP, can you instantiate an object and call a method on the same line? Chris Mazzola 2009-09-09T22:43:30Z 2009-09-09T22:43:30Z Great answer :P Made me laugh. http://stackoverflow.com/questions/60160/how-to-escape-text-for-regular-expression-in-java/60164#60164 Comment by Chris Mazzola on How to escape text for regular expression in Java Chris Mazzola 2009-08-06T20:51:42Z 2009-08-06T20:51:42Z I'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/&hellip;</a> http://stackoverflow.com/questions/178479/alternatives-for-java-sql-preparedstatement-in-clause-issue Comment by Chris Mazzola on Alternatives for java sql PreparedStatement IN clause issue? Chris Mazzola 2009-07-08T21:51:40Z 2009-07-08T21:51:40Z Oscar, 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#512622 Comment by Chris Mazzola on Detect windows logout in Java Chris Mazzola 2009-02-05T17:43:22Z 2009-02-05T17:43:22Z Unfortunately, using a shutdown hook in Runtime does not work when using javaw. http://stackoverflow.com/questions/512555/detect-windows-logout-in-java/512660#512660 Comment by Chris Mazzola on Detect windows logout in Java Chris Mazzola 2009-02-05T17:42:35Z 2009-02-05T17:42:35Z Unfortunately this does not work when using javaw. http://stackoverflow.com/questions/186964/java-core-api-anti-patterns-what-is-wrong/187674#187674 Comment by Chris Mazzola on Java core API anti-Patterns. What is wrong? Chris Mazzola 2008-10-09T16:48:49Z 2008-10-09T16:48:49Z It's simple. :P http://stackoverflow.com/questions/178479/alternatives-for-java-sql-preparedstatement-in-clause-issue/178517#178517 Comment by Chris Mazzola on Alternatives for java sql PreparedStatement IN clause issue? Chris Mazzola 2008-10-09T16:29:37Z 2008-10-09T16:29:37Z Bill, 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#178650 Comment by Chris Mazzola on Alternatives for java sql PreparedStatement IN clause issue? Chris Mazzola 2008-10-09T16:24:25Z 2008-10-09T16:24:25Z Yes, 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#178505 Comment by Chris Mazzola on Alternatives for java sql PreparedStatement IN clause issue? Chris Mazzola 2008-10-09T16:21:52Z 2008-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/&hellip;</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#178517 Comment by Chris Mazzola on Alternatives for java sql PreparedStatement IN clause issue? Chris Mazzola 2008-10-07T15:28:32Z 2008-10-07T15:28:32Z Not 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. :P http://stackoverflow.com/questions/15496/hidden-features-of-java/15538#15538 Comment by Chris Mazzola on Hidden Features of Java Chris Mazzola 2008-10-07T12:36:32Z 2008-10-07T12:36:32Z It's really too bad this type of functionality isn't directly in the collections API. http://stackoverflow.com/questions/169815/java-common-gotchas/170049#170049 Comment by Chris Mazzola on Java - Common Gotchas Chris Mazzola 2008-10-04T13:52:18Z 2008-10-04T13:52:18Z The 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-4 Comment by Chris Mazzola on How to add an attribute to an XML node in Java 1.4 Chris Mazzola 2008-09-30T19:35:52Z 2008-09-30T19:35:52Z What 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#143093 Comment by Chris Mazzola on Is it OK to have an 'empty' class that extends another class? Chris Mazzola 2008-09-27T20:17:17Z 2008-09-27T20:17:17Z Your 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