User GaryF - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T01:59:07Z http://stackoverflow.com/feeds/user/1035 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1916019/java-abstract-static-workaround/1916061#1916061 -1 Answer by GaryF for Java abstract static Workaround GaryF 2009-12-16T16:57:01Z 2009-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#1913923 1 Answer by GaryF for Are there any credible alternatives to iText for programmatic PDF generation within Java? GaryF 2009-12-16T11:01:54Z 2009-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#1901066 1 Answer by GaryF for View Menu with submenu GaryF 2009-12-14T13:52:56Z 2009-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 &amp;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#1846957 2 Answer by GaryF for How negligible is ParameterizedBeanPropertyRowMapper's performance hit? GaryF 2009-12-04T13:31:07Z 2009-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#1782060 1 Answer by GaryF for Internal implementation of java.util.HashMap and HashSet GaryF 2009-11-23T09:35:55Z 2009-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#1769968 1 Answer by GaryF for Where I can find good Spring project example with Hibernate? GaryF 2009-11-20T11:45:26Z 2009-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#1613194 2 Answer by GaryF for How to make industry standard desktop Java applications? GaryF 2009-10-23T12:44:43Z 2009-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#1599357 2 Answer by GaryF for How should I design my rating system? GaryF 2009-10-21T07:59:32Z 2009-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#1439609 1 Answer by GaryF for Using user defined method to print line to console in java GaryF 2009-09-17T15:32:17Z 2009-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#1432093 1 Answer by GaryF for Depth first search using java GaryF 2009-09-16T10:06:01Z 2009-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#1421325 0 Answer by GaryF for IntervalTree Java Implementation GaryF 2009-09-14T12:43:35Z 2009-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#1379165 0 Answer by GaryF for Legal have servers overseas - USA GaryF 2009-09-04T13:13:34Z 2009-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#1346679 5 Answer by GaryF for Java newbie: infinite loop searching for specific text in a file GaryF 2009-08-28T12:23:28Z 2009-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#1339637 1 Answer by GaryF for Log4J able to recover from disk full? GaryF 2009-08-27T08:24:45Z 2009-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#1326769 1 Answer by GaryF for Is persistent HTTP with HTTP/1.0 possible? GaryF 2009-08-25T08:18:24Z 2009-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#1326742 1 Answer by GaryF for Will struts 1.2.4 work with Java5 ? GaryF 2009-08-25T08:09:38Z 2009-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#1299115 1 Answer by GaryF for Bootstrap loader using java. GaryF 2009-08-19T10:51:16Z 2009-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#1292527 3 Answer by GaryF for java logging vs Log4j in Spring framework. Which one is the most suitable. GaryF 2009-08-18T08:21:04Z 2009-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#1187176 2 Answer by GaryF for how to replace the null character GaryF 2009-07-27T08:57:58Z 2009-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#1158969 1 Answer by GaryF for Easiest Way to Check if a Java String Instance Might Hold Spam Data. GaryF 2009-07-21T12:46:46Z 2009-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#1142497 1 Answer by GaryF for Queueserver --> java appservers --> cluster of calculation servers GaryF 2009-07-17T10:26:55Z 2009-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#1079755 7 Answer by GaryF for good example of Javadoc GaryF 2009-07-03T15:03:50Z 2009-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#1074644 2 Answer by GaryF for Hash Code Implementation GaryF 2009-07-02T14:16:54Z 2009-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#1074632 1 Answer by GaryF for HashMap profiling GaryF 2009-07-02T14:15:24Z 2009-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#1053146 4 Answer by GaryF for Making a lottery program in Java GaryF 2009-06-27T16:32:53Z 2009-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#1006707 0 Answer by GaryF for Are java primitive ints atomic by design or by accident? GaryF 2009-06-17T12:30:16Z 2009-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-poi 1 Is it possible to add VB to an Excel sheet from POI? GaryF 2009-05-04T10:11:09Z 2009-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#792664 2 Answer by GaryF for Secret Handshake Anti-Pattern GaryF 2009-04-27T08:35:47Z 2009-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#792647 2 Answer by GaryF for how to do actors (erlang) in java? GaryF 2009-04-27T08:28:35Z 2009-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#618251 0 Answer by GaryF for Is it possible to transform javabeans with XSLT and JXPath? GaryF 2009-03-06T09:48:24Z 2009-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-workaround Comment by GaryF on Java abstract static Workaround GaryF 2009-12-17T09:07:44Z 2009-12-17T09:07:44Z &quot;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.&quot; 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#1379165 Comment by GaryF on Legal have servers overseas - USA GaryF 2009-09-07T08:10:17Z 2009-09-07T08:10:17Z I'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#1339637 Comment by GaryF on Log4J able to recover from disk full? GaryF 2009-08-27T12:16:31Z 2009-08-27T12:16:31Z If 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/&hellip;</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#1326769 Comment by GaryF on Is persistent HTTP with HTTP/1.0 possible? GaryF 2009-08-27T08:18:09Z 2009-08-27T08:18:09Z It'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-keyword Comment by GaryF on Can we deny a java object from serialization other than giving transient keyword GaryF 2009-08-18T08:13:40Z 2009-08-18T08:13:40Z For 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#1142497 Comment by GaryF on Queueserver --> java appservers --> cluster of calculation servers GaryF 2009-07-19T18:38:18Z 2009-07-19T18:38:18Z The 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#1074644 Comment by GaryF on Hash Code Implementation GaryF 2009-07-02T15:13:47Z 2009-07-02T15:13:47Z Good 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#8160 Comment by GaryF on IllegalArgumentException or NullPointerException for a null parameter? GaryF 2009-06-08T10:28:24Z 2009-06-08T10:28:24Z I 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#796464 Comment by GaryF on What's the most minimal Java web MVC framework? GaryF 2009-04-28T06:38:51Z 2009-04-28T06:38:51Z M = 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-excel Comment by GaryF on data validation field in excel GaryF 2009-03-31T14:55:36Z 2009-03-31T14:55:36Z And 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#618167 Comment by GaryF on Difference between Enumeration<? extends ZipEntry> and Enumeration<ZipEntry>? GaryF 2009-03-06T09:21:38Z 2009-03-06T09:21:38Z This 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#491746 Comment by GaryF on can I build swing applications on eclipse ? GaryF 2009-01-30T00:02:56Z 2009-01-30T00:02:56Z Nope, 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#480413 Comment by GaryF on Is there a PropertyPlaceholderConfigurer-like class for use with Spring that accepts XML? GaryF 2009-01-26T22:46:02Z 2009-01-26T22:46:02Z That'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#479120 Comment by GaryF on Questions to indicate competency in Java GaryF 2009-01-26T09:13:43Z 2009-01-26T09:13:43Z I 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#370824 Comment by GaryF on Cleanest way to build an SQL string in Java GaryF 2009-01-23T16:22:56Z 2009-01-23T16:22:56Z Not 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.