User GaryF - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T01:59:07Zhttp://stackoverflow.com/feeds/user/1035http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1916019/java-abstract-static-workaround/1916061#1916061-1Answer by GaryF for Java abstract static WorkaroundGaryF2009-12-16T16:57:01Z2009-12-16T16:57:01Z<p>It doesn't make sense to do what you're asking:</p>
<p><a href="http://stackoverflow.com/questions/370962/why-cant-static-methods-be-abstract-in-java/370966#370966">http://stackoverflow.com/questions/370962/why-cant-static-methods-be-abstract-in-java/370966#370966</a></p>
http://stackoverflow.com/questions/1913360/are-there-any-credible-alternatives-to-itext-for-programmatic-pdf-generation-with/1913923#19139231Answer by GaryF for Are there any credible alternatives to iText for programmatic PDF generation within Java?GaryF2009-12-16T11:01:54Z2009-12-16T11:01:54Z<p>There's a pretty thorough conversation about that already:
<a href="http://stackoverflow.com/questions/1377135/are-there-any-java-pdf-creation-alternatives-to-itext">http://stackoverflow.com/questions/1377135/are-there-any-java-pdf-creation-alternatives-to-itext</a></p>
<p>For what it is worth, I find that PDFBox does most of what is typically required.</p>
http://stackoverflow.com/questions/1901017/view-menu-with-submenu/1901066#19010661Answer by GaryF for View Menu with submenuGaryF2009-12-14T13:52:56Z2009-12-14T13:52:56Z<p>You can add menus to other menus:</p>
<pre><code>IMenuManager rootMenu = getViewSite().getActionBars().getMenuManager();
MenuManager menu = new MenuManager("Menu &2", "2");
menu.add(new Action("Action1") {
@Override
public void run() {
//do something
}});
menu.add(new Action("Action2") {
@Override
public void run() {
//do something
}});
rootMenu.add(menu);
</code></pre>
http://stackoverflow.com/questions/1846919/how-negligible-is-parameterizedbeanpropertyrowmappers-performance-hit/1846957#18469572Answer by GaryF for How negligible is ParameterizedBeanPropertyRowMapper's performance hit?GaryF2009-12-04T13:31:07Z2009-12-04T14:38:54Z<p>I've never benchmarked it, because I've never found it to be a particular bottleneck. A custom RowMapper that doesn't use reflection would be faster but I've never seen a hit worth worrying about in my apps. If you're doing an extremely high performance app then it might be worth looking at, but for most purposes I think the convenience is worth the negligible hit.</p>
<p>A look at the source code for the base class, AbstractBeanPropertyRowMapper, suggests that a lot of the reflection-style code gets cached after the first time the class is accessed via that mapper. I cannot imagine there being any real performance issues. Quick peek: <a href="http://www.java2s.com/Open-Source/Java-Document/J2EE/spring-framework-2.5/org/springframework/jdbc/core/AbstractBeanPropertyRowMapper.java.htm" rel="nofollow">http://www.java2s.com/Open-Source/Java-Document/J2EE/spring-framework-2.5/org/springframework/jdbc/core/AbstractBeanPropertyRowMapper.java.htm</a></p>
http://stackoverflow.com/questions/1781868/internal-implementation-of-java-util-hashmap-and-hashset/1782060#17820601Answer by GaryF for Internal implementation of java.util.HashMap and HashSetGaryF2009-11-23T09:35:55Z2009-11-23T09:49:12Z<p>Aaron Digulla is absolutely correct. An interesting additional note that people don't seem to realise is that the key object's hashCode() method is not used verbatim. It is, in fact, rehashed by the HashMap i.e. it calls <code>hash(someKey.hashCode))</code>, where <code>hash()</code> is an internal hashing method.</p>
<p>To see this, have a look at the source: <a href="http://kickjava.com/src/java/util/HashMap.java.htm" rel="nofollow">http://kickjava.com/src/java/util/HashMap.java.htm</a></p>
<p>The reason for this is that some people implement hashCode() poorly and the hash() function gives a better hash distribution. It's basically done for performance reasons.</p>
http://stackoverflow.com/questions/1769953/where-i-can-find-good-spring-project-example-with-hibernate/1769968#17699681Answer by GaryF for Where I can find good Spring project example with Hibernate?GaryF2009-11-20T11:45:26Z2009-11-20T11:45:26Z<p>The Pet Clinic sample that comes along with Spring is a great starting point. Give that a try.</p>
http://stackoverflow.com/questions/1612984/how-to-make-industry-standard-desktop-java-applications/1613194#16131942Answer by GaryF for How to make industry standard desktop Java applications?GaryF2009-10-23T12:44:43Z2009-10-23T12:44:43Z<p>Run through the tutorial suggested by yar. I'd also recommend the excellent book, "<a href="http://filthyrichclients.org/" rel="nofollow">Filthy Rich Clients</a>" by Romain Guy and Chet Haase (two big names in the Swing world). It'll teach you to make apps that look great.</p>
http://stackoverflow.com/questions/1599341/how-should-i-design-my-rating-system/1599357#15993572Answer by GaryF for How should I design my rating system?GaryF2009-10-21T07:59:32Z2009-10-21T07:59:32Z<p>There's no right or wrong answer here, so I'd advise having a think about: a) what behaviour you'd like to encourage, and b) what users might be reticient to do. Think of the voting as a way of rewarding good behaviour, discouraging bad behaviour, and as a carrot to the harder things.</p>
<p>Figure out what takes longest and what people won't often do and weight your point system accordingly.</p>
http://stackoverflow.com/questions/1439489/using-user-defined-method-to-print-line-to-console-in-java/1439609#14396091Answer by GaryF for Using user defined method to print line to console in javaGaryF2009-09-17T15:32:17Z2009-09-17T15:32:17Z<p>A wild guess here: is this for logging purposes? I'd guess that a good proportion of people who want to write to the console are doing so for logging purposes and that a very high proportion of those people don't want to use System.out.println() so that they can have greater control of switching that particular form of logging on and off.</p>
<p>If my guess is correct, might I suggest looking into a logging framework like <a href="http://logging.apache.org/log4j/" rel="nofollow">Log4J</a> or <a href="http://www.slf4j.org/" rel="nofollow">SLF4J</a>/<a href="http://logback.qos.ch/" rel="nofollow">Logbac</a>k? You'll get console appenders and whatever degree of control you need.</p>
http://stackoverflow.com/questions/1432024/depth-first-search-using-java/1432093#14320931Answer by GaryF for Depth first search using javaGaryF2009-09-16T10:06:01Z2009-09-16T10:06:01Z<p>Assuming you don't want duplicates in your structure, then TreeSet is a decent enough starting point. You get DFS for free (iterator()), and you can make use of the NavigableSet interface to build BFS.</p>
http://stackoverflow.com/questions/1418150/intervaltree-java-implementation/1421325#14213250Answer by GaryF for IntervalTree Java ImplementationGaryF2009-09-14T12:43:35Z2009-09-14T12:43:35Z<p>I don't know your exact requirements but a non-static Segment Tree might work for you. If so, have a look at <a href="http://code.google.com/p/layout-managment-sw-package/" rel="nofollow">Layout Management SW</a>, specifically the <a href="http://code.google.com/p/layout-managment-sw-package/source/browse/#svn/trunk/LayoutManagmentSWPackage/src/DataModel/SegmentTree" rel="nofollow">SegmentTree package</a>. It has the remove feature you need.</p>
<p>If you decide to roll your own, might I suggest open sourcing it? I'm surprised there isn't an open and easy Interval Tree available already.</p>
http://stackoverflow.com/questions/1379134/legal-have-servers-overseas-usa/1379165#13791650Answer by GaryF for Legal have servers overseas - USAGaryF2009-09-04T13:13:34Z2009-09-04T13:13:34Z<p>It's perfectly legal, and in fact fairly common for large-scale redundant applications where nodes around the globe handle all data. You still need to comply with all privacy laws that affect your data, however.</p>
http://stackoverflow.com/questions/1346657/java-newbie-infinite-loop-searching-for-specific-text-in-a-file/1346679#13466795Answer by GaryF for Java newbie: infinite loop searching for specific text in a fileGaryF2009-08-28T12:23:28Z2009-08-28T12:23:28Z<p>Is your text to find in the first line, by any chance? You do a readLine operation outside of your loop and then inside, so the first line basically gets ignored.</p>
http://stackoverflow.com/questions/1339094/log4j-able-to-recover-from-disk-full/1339637#13396371Answer by GaryF for Log4J able to recover from disk full?GaryF2009-08-27T08:24:45Z2009-08-27T08:24:45Z<p>What do you see is an acceptable outcome here? I'd consider writing a new Appender that wraps whichever appender is accessing the disk, and tries to do something sensible when it detects IOExceptions. Maybe get it to wrap the underlying Appenders write methods in a try-catch block, and send you or a sysadmin an email.</p>
http://stackoverflow.com/questions/1326632/is-persistent-http-with-http-1-0-possible/1326769#13267691Answer by GaryF for Is persistent HTTP with HTTP/1.0 possible?GaryF2009-08-25T08:18:24Z2009-08-25T08:18:24Z<p>HTTP 1.0 proxies (which it seems your ISP uses) shouldn't be used in connection with Connection: Keep-Alive for persistent connections. The reasons for this are outlined in <a href="http://www.ietf.org/rfc/rfc2068.txt" rel="nofollow">RFC-2068</a> (section 19.7.1). The short version, basically, is that your server is sending an invalid header for the kind of proxy you are using.</p>
http://stackoverflow.com/questions/1326737/will-struts-1-2-4-work-with-java5/1326742#13267421Answer by GaryF for Will struts 1.2.4 work with Java5 ?GaryF2009-08-25T08:09:38Z2009-08-25T08:09:38Z<p>Yes, I've used it on previous projects and can't even think of any major caveats. If I were you, I'd give it a quick test. You should be fine.</p>
http://stackoverflow.com/questions/1299085/bootstrap-loader-using-java/1299115#12991151Answer by GaryF for Bootstrap loader using java.GaryF2009-08-19T10:51:16Z2009-08-19T10:51:16Z<p>I don't want to say an outright no, because I'm sure if I did someone would come up with a way of doing it, but this would certainly be VERY difficult (and possibly fruitless).</p>
<p>For Java to run on a JVM, you'd need to natively bootstrap a sufficient amount of the OS natively that then switching to java would be a bit of a waste of time (it really wouldn't accomplish much other than adding complexity).</p>
<p>There are devices that can "natively" run bytecode where it's conceivably possibly, but I don't think that's viable most of the time.</p>
http://stackoverflow.com/questions/1292451/java-logging-vs-log4j-in-spring-framework-which-one-is-the-most-suitable/1292527#12925273Answer by GaryF for java logging vs Log4j in Spring framework. Which one is the most suitable.GaryF2009-08-18T08:21:04Z2009-08-18T08:21:04Z<p>Regardless of which logging framework you use in your own code, as far as I can remember, Spring has a hard dependency on commons-logging. You can still use whatever you like for your own logging (I'd recommend SLF4J as your facade, with logback as your implementation), but Spring internally needs commons-logging. Whether you want to depend on multiple frameworks is your choice; it shouldn't prove problematic.</p>
http://stackoverflow.com/questions/1187147/how-to-replace-the-null-character/1187176#11871762Answer by GaryF for how to replace the null characterGaryF2009-07-27T08:57:58Z2009-07-27T08:57:58Z<p>If you want to remove all white space internally in a String (which is what I think you're asking), then you want something like:</p>
<pre><code>sText.replaceAll("\\s+", "")
</code></pre>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/1158877/easiest-way-to-check-if-a-java-string-instance-might-hold-spam-data/1158969#11589691Answer by GaryF for Easiest Way to Check if a Java String Instance Might Hold Spam Data. GaryF2009-07-21T12:46:46Z2009-07-21T12:46:46Z<p>You could try writing your own classifier etc, but if you have guaranteed network access, how about just using <a href="http://sourceforge.net/projects/akismet-java/" rel="nofollow">Akismet and the Java bindings</a>? It's pretty good for finding spam.</p>
<p>You'll need to take the network connectivity and licensing into consideration.</p>
http://stackoverflow.com/questions/1142484/queueserver-java-appservers-cluster-of-calculation-servers/1142497#11424971Answer by GaryF for Queueserver --> java appservers --> cluster of calculation serversGaryF2009-07-17T10:26:55Z2009-07-17T10:26:55Z<p>Any form of RPC will do. RMI is a good solution, but I prefer to use <a href="http://static.springsource.org/spring/docs/2.0.x/reference/remoting.html" rel="nofollow">Spring Remoting</a>. It lets you define an interface, and inject an implementation of that interface that just so happens to do the work remotely. I think that'd suit what you want to do nicely.</p>
http://stackoverflow.com/questions/1079713/good-example-of-javadoc/1079755#10797557Answer by GaryF for good example of JavadocGaryF2009-07-03T15:03:50Z2009-07-03T15:59:33Z<p>How about the JDK source code, but accessed through a 3rd party like docjar? For example, the <a href="http://www.docjar.net/html/api/java/util/Collections.java.html" rel="nofollow">Collections source</a>.</p>
<p>That way, there's no big download.</p>
http://stackoverflow.com/questions/1074629/hash-code-implementation/1074644#10746442Answer by GaryF for Hash Code ImplementationGaryF2009-07-02T14:16:54Z2009-07-02T14:16:54Z<p>If you're aiming for identity uniqueness then absolutely, yes.</p>
<p>Keep in mind though that since you're (probably) not randomly distributing your values through the possible range of your hash function (i.e. all the values of int) that performance might be a problem for any code that relies on hashes being evenly distributed.</p>
<p>P.s. That "probably" comes from my assumption that these unique ints are probably identity values in your db. If they really are randomly distributed, ignore my caveat.</p>
http://stackoverflow.com/questions/1074501/hashmap-profiling/1074632#10746321Answer by GaryF for HashMap profilingGaryF2009-07-02T14:15:24Z2009-07-02T14:15:24Z<p>On the second part of your question, if you're looking for a fast Hashmap implementation with some decent real-time guarantees have a look at <a href="http://javolution.org/" rel="nofollow">Javolution</a>. It's fast, reliable and goes into a decent amount of detail on performance.</p>
http://stackoverflow.com/questions/1053131/making-a-lottery-program-in-java/1053146#10531464Answer by GaryF for Making a lottery program in JavaGaryF2009-06-27T16:32:53Z2009-06-27T16:49:54Z<p>The direct route to getting Excel data into Java is, of course, <a href="http://poi.apache.org/" rel="nofollow">POI</a>. Very stable, excellent library, and lets you in and the low-level innards of working with Excel.</p>
<p>Of note is the <a href="http://poi.apache.org/spreadsheet/quick-guide.html" rel="nofollow">Busy Developer's Guide to POI</a>, which should help ease some of the initial pain.</p>
<p>If you're more interested in learning POI and doing a simple Java exercise, then this sounds fair enough. The more interesting questions will be how to display the millions of combinations that haven't already occurred, and how to approach this from a data structure point of view (hint: use a mix of hashtable lookups and generation to keep the memory overhead to a minimum).</p>
<p>If you want to take this really seriously, ask yourself if an Excel file is a good storage mechanism for this kind of data. That's really what you're doing: using Excel as a data store. There are better alternatives.</p>
http://stackoverflow.com/questions/1006655/are-java-primitive-ints-atomic-by-design-or-by-accident/1006707#10067070Answer by GaryF for Are java primitive ints atomic by design or by accident?GaryF2009-06-17T12:30:16Z2009-06-17T12:30:16Z<p>This is somewhat complicated, and is related to system wordsize. Bruce Eckel discusses it in more detail: <a href="http://www.artima.com/weblogs/viewpost.jsp?thread=126834" rel="nofollow">Java Threads</a>.</p>
http://stackoverflow.com/questions/819555/is-it-possible-to-add-vb-to-an-excel-sheet-from-poi1Is it possible to add VB to an Excel sheet from POI?GaryF2009-05-04T10:11:09Z2009-05-04T10:19:51Z
<p>Does anyone know if it's possible to add VB to an Excel document, from within Java? I basically want to add a pivot table to a sheet, and set some of it's properties dynamically. I know that I can access the pivot table settings from VB, but not directly from POI.</p>
http://stackoverflow.com/questions/792632/secret-handshake-anti-pattern/792664#7926642Answer by GaryF for Secret Handshake Anti-PatternGaryF2009-04-27T08:35:47Z2009-04-27T08:35:47Z<ol>
<li>I'd expect to see the AnalyzerFactory get passed the necessary params and do the construction itself; otherwise, what exactly is it doing?</li>
<li>Not sure if it does have a name, but it seems like it should :)</li>
<li>Yes, occassionally it's convenient (and the right level of abstraction) to have setters in your interface and expect classes to call them. I'd suggest that doing so <strong>requires</strong> extensive documentation of that fact.</li>
<li>Not really, no. A preference for immutability is certainly a good thing, and setter/bean based design can be the "right" choice sometimes too, but your given example is taking it too far.</li>
</ol>
http://stackoverflow.com/questions/792638/how-to-do-actors-erlang-in-java/792647#7926472Answer by GaryF for how to do actors (erlang) in java?GaryF2009-04-27T08:28:35Z2009-04-27T08:28:35Z<p>Use one of the excellent Actors libraries that have appeared recently. Alex Miller wrote a good two part piece for <a href="http://www.javaworld.com/javaworld/jw-02-2009/jw-02-actor-concurrency1.html" rel="nofollow">Javaworld on Actors</a>.</p>
<p>I also personally quite like <a href="http://actorsguildframework.org/tutorial.xhtml" rel="nofollow">Actor's Guild</a>.</p>
http://stackoverflow.com/questions/618222/is-it-possible-to-transform-javabeans-with-xslt-and-jxpath/618251#6182510Answer by GaryF for Is it possible to transform javabeans with XSLT and JXPath?GaryF2009-03-06T09:48:24Z2009-03-06T09:48:24Z<p>I'm sure it is possible, but it seems a little convoluted. For one, it looks like there is an inheritance relation between the two classes you mention. If so, you should probably have a constructor that accepts the other type as an argument.</p>
<p>If there is no obvious inheritance relation, why not just use the javabeans setter? What is the need to use JXPath at all here? That would almost certainly be slower.</p>
http://stackoverflow.com/questions/1916019/java-abstract-static-workaroundComment by GaryF on Java abstract static WorkaroundGaryF2009-12-17T09:07:44Z2009-12-17T09:07:44Z"The reason the methods in Stick, Ball, and Toy have to be static is because they will be talking to a database to retrieve all of the entries in the database for each class."
And why does this mean they MUST be static? Instance methods can very obviously do this. Do you actually just want singletons?http://stackoverflow.com/questions/1379134/legal-have-servers-overseas-usa/1379165#1379165Comment by GaryF on Legal have servers overseas - USAGaryF2009-09-07T08:10:17Z2009-09-07T08:10:17ZI'm confident because a) I've worked for large companies who have done it (and been involved in international migrations), and b) I can think of dozens of examples (Google, Amazon etc). I certainly should have sourced though.http://stackoverflow.com/questions/1339094/log4j-able-to-recover-from-disk-full/1339637#1339637Comment by GaryF on Log4J able to recover from disk full?GaryF2009-08-27T12:16:31Z2009-08-27T12:16:31ZIf you're using the OnlyOnceErrorHandler, you might consider using the FallbackErrorHandler (<a href="http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/varia/FallbackErrorHandler.html" rel="nofollow">logging.apache.org/log4j/1.2/…</a>) instead. That way you can specify a second appender (maybe an email appender) when the first can't write any more. That'll handle a lot of what wrapping would do.http://stackoverflow.com/questions/1326632/is-persistent-http-with-http-1-0-possible/1326769#1326769Comment by GaryF on Is persistent HTTP with HTTP/1.0 possible?GaryF2009-08-27T08:18:09Z2009-08-27T08:18:09ZIt's hard to say for sure, but I'd say probably yes.http://stackoverflow.com/questions/1292474/can-we-deny-a-java-object-from-serialization-other-than-giving-transient-keywordComment by GaryF on Can we deny a java object from serialization other than giving transient keywordGaryF2009-08-18T08:13:40Z2009-08-18T08:13:40ZFor what purpose? Why is transient not a good solution for your use-cases?http://stackoverflow.com/questions/1142484/queueserver-java-appservers-cluster-of-calculation-servers/1142497#1142497Comment by GaryF on Queueserver --> java appservers --> cluster of calculation serversGaryF2009-07-19T18:38:18Z2009-07-19T18:38:18ZThe Spring Framework is broken down into modules. You'd need some of them, but not all.http://stackoverflow.com/questions/1074629/hash-code-implementation/1074644#1074644Comment by GaryF on Hash Code ImplementationGaryF2009-07-02T15:13:47Z2009-07-02T15:13:47ZGood to know, but HashMap is not the only code to make use of hashCode() so distribution could be a problem.http://stackoverflow.com/questions/3881/illegalargumentexception-or-nullpointerexception-for-a-null-parameter/8160#8160Comment by GaryF on IllegalArgumentException or NullPointerException for a null parameter?GaryF2009-06-08T10:28:24Z2009-06-08T10:28:24ZI don't necessarily agree with the standard (I could actually go either way on the issue), but that IS what the standard usage throughout the JDK is, hence Effective Java making the case for it. I think this is a case of choosing whether or not to follow the standard, or do the thing you feel is right. Unless you have a very good reason (and this certainly may qualify), it's best to follow standard practice.http://stackoverflow.com/questions/796219/whats-the-most-minimal-java-web-mvc-framework/796464#796464Comment by GaryF on What's the most minimal Java web MVC framework?GaryF2009-04-28T06:38:51Z2009-04-28T06:38:51ZM = data structures (model), V = presentation layer (view), C = application layer (control). I think you've gotten these a little muddled.http://stackoverflow.com/questions/701314/data-validation-field-in-excelComment by GaryF on data validation field in excelGaryF2009-03-31T14:55:36Z2009-03-31T14:55:36ZAnd what kind of data validation are you wanting to do? Do you want the java to do the validation or for it to leave some kind of validation in the excel?http://stackoverflow.com/questions/618148/difference-between-enumeration-extends-zipentry-and-enumerationzipentry/618167#618167Comment by GaryF on Difference between Enumeration<? extends ZipEntry> and Enumeration<ZipEntry>?GaryF2009-03-06T09:21:38Z2009-03-06T09:21:38ZThis is the second time this week Jon Skeet has gotten an answer in just before me. I propose we refer to this as Skeeting.http://stackoverflow.com/questions/491726/can-i-build-swing-applications-on-eclipse/491746#491746Comment by GaryF on can I build swing applications on eclipse ?GaryF2009-01-30T00:02:56Z2009-01-30T00:02:56ZNope, sorry. But it is worth the license.http://stackoverflow.com/questions/479855/is-there-a-propertyplaceholderconfigurer-like-class-for-use-with-spring-that-acce/480413#480413Comment by GaryF on Is there a PropertyPlaceholderConfigurer-like class for use with Spring that accepts XML?GaryF2009-01-26T22:46:02Z2009-01-26T22:46:02ZThat's definitely handy to know, and will be a handy back-up. I guess it's easy enough to override PropertiesPersister to implement Apache Digester style parsing, instead of the standard properties xml format.http://stackoverflow.com/questions/479112/questions-to-indicate-competency-in-java/479120#479120Comment by GaryF on Questions to indicate competency in JavaGaryF2009-01-26T09:13:43Z2009-01-26T09:13:43ZI agree with Yann Semet. Sure, it's an interesting piece of trivia, but it tells you nothing about the programmer. Here's a hint: if it appears in Java Puzzlers, it's probably not going to be helpful in the 80% case.http://stackoverflow.com/questions/370818/cleanest-way-to-build-an-sql-string-in-java/370824#370824Comment by GaryF on Cleanest way to build an SQL string in JavaGaryF2009-01-23T16:22:56Z2009-01-23T16:22:56ZNot quite. You can use any SqlParameterSource with Named JDBC Parameters. It suited my needs to use a MapSqlParameterSource, rather than the bean variety. Either way, it's a good solution. The RowMappers, however, deal with the other side of the SQL puzzle: turning resultsets into objects.