User P Arrayah - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T05:14:53Zhttp://stackoverflow.com/feeds/user/33459http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/347656/how-can-i-list-the-missing-dates-from-an-array-of-non-continuous-dates-in-java/347768#3477680Answer by P Arrayah for How can I list the missing dates from an array of non-continuous dates in Java?P Arrayah2008-12-07T16:47:22Z2008-12-07T16:47:22Z<p>While the other answers already given look rather simple and enjoyable and hold some good ideas (I especially agree with the Iterator suggestion by Nerdfest), I thought I'd give this a shot anyway and code a solution just to show how I'd do it for the first iteration, I'm sure there's room for improvement in what's below.</p>
<p>I also maybe took your requirements a bit too literally but you know how to adjust the code to your liking. Oh and sorry for horrible naming of objects. Also since this sample uses Calendar, remember that Calendar.roll() may not update the entire Calendar object in some cases so that's a potential bug right there.</p>
<pre><code>protected List<Calendar> getDatesWithNoData(Calendar start, Calendar end,
Calendar[] existingDates) throws ParseException {
List<Calendar> missingData = new ArrayList<Calendar>();
for(Calendar c=start ; c.compareTo(end)<=0 ; c.roll(Calendar.DAY_OF_MONTH, true) ) {
if(!isInDataSet(c, existingDates)) {
Calendar c2 = Calendar.getInstance();
c2.setTimeInMillis(c.getTimeInMillis());
missingData.add(c2);
}
}
return missingData;
}
protected boolean isInDataSet(Calendar toSearch, Calendar[] dataSet) {
for(Calendar l : dataSet) {
if(toSearch.equals(l)) return true;
}
return false;
}
</code></pre>
http://stackoverflow.com/questions/346794/not-detecting-flash-10-worlds-most-widespread-web-video-bug/346805#3468051Answer by P Arrayah for Not Detecting Flash 10: World's Most Widespread Web Video Bug?P Arrayah2008-12-06T21:29:04Z2008-12-06T21:29:04Z<p>My guess would be detection from string which is something like "Flash Player version X.Y" by doing something like "get the character before '.' and convert it to number." I've done this a few times myself, it's just stupid.</p>
http://stackoverflow.com/questions/346793/json-to-string-in-prototype/346795#346795-1Answer by P Arrayah for JSON to string in PrototypeP Arrayah2008-12-06T21:26:21Z2008-12-06T21:26:21Z<p>Assuming you're speaking of <a href="http://www.prototypejs.org/" rel="nofollow">Prototype JavaScript framework</a>, why not just use JavaScript's own JSON functionality? JSON does after all stand for JavaScript Object Notation.</p>
http://stackoverflow.com/questions/337432/looking-for-a-regular-expression-to-identify-hard-coded-magic-numbers-in-source-c/338346#3383460Answer by P Arrayah for Looking for a regular expression to identify hard coded magic numbers in source codeP Arrayah2008-12-03T18:58:19Z2008-12-03T18:58:19Z<p>For Java I'd get <a href="http://findbugs.sourceforge.net/" rel="nofollow">FindBugs</a> and then write a custom bug detector for it to do that checking you need. For more info on writing a custom bug detector see <a href="http://www.ibm.com/developerworks/library/j-findbug2/" rel="nofollow">this link</a>.</p>
http://stackoverflow.com/questions/336993/is-java-suitable-for-web-2-0-applications/338327#3383271Answer by P Arrayah for Is Java suitable for "Web 2.0" applications?P Arrayah2008-12-03T18:54:15Z2008-12-03T18:54:15Z<p>Wonderful day, I get to post about <a href="http://wicket.apache.org/" rel="nofollow">Wicket</a> again! :)</p>
<p>Java is very suitable for Web2.0 applications as long as you know how to use the tools which are available for you. The Apache Wicket I just linked is a POJO-based web application framework with such incredible way to hide all that boring server-client stuff that it allows you to do just about anything you can think of. The strong point here is that since Wicket is just POJOs, you can get very fast, iterative and unit tested code that works just as one would expect in browser.</p>
<p>To create Web2.0 sites with Java you don't of course have to use Wicket but I'd recommend it anyway.</p>
http://stackoverflow.com/questions/130095/most-useful-free-java-libraries/338311#3383116Answer by P Arrayah for Most useful free Java libraries?P Arrayah2008-12-03T18:49:28Z2008-12-03T18:49:28Z<p><a href="http://wicket.apache.org/" rel="nofollow">Apache Wicket</a>, POJO-based web application framework. That description is short but it's beyond powerful, check the examples from the site and you should understand why.</p>
http://stackoverflow.com/questions/328141/what-do-you-think-of-programming-is-gardening-not-engineering/328581#3285810Answer by P Arrayah for What do you think of "Programming is Gardening, not Engineering"?P Arrayah2008-11-30T07:22:46Z2008-11-30T07:22:46Z<p>Never thought of programming as gardening but it would fit since my number one favorite Chinese proverb is "Nothing is as important as gardening and even that isn't really that important."</p>
http://stackoverflow.com/questions/321864/java-dynamic-binding-and-method-overriding/321884#3218843Answer by P Arrayah for Java dynamic binding and method overridingP Arrayah2008-11-26T19:31:11Z2008-11-26T19:31:11Z<p>I think the key lies in the fact that the equals() method doesn't conform to standard: It takes in another Test object, not Object object and thus isn't overriding the equals() method. This means you actually have only overloaded it to do something special when it's given Test object while giving it Object object calls Object.equals(Object o). Looking that code through any IDE should show you two equals() methods for Test.</p>
http://stackoverflow.com/questions/318657/null-object-design-pattern-question/318683#3186831Answer by P Arrayah for Null object design pattern questionP Arrayah2008-11-25T20:10:25Z2008-11-25T20:10:25Z<p>As far as I've understood it the idea is that the null object's value is as close to "nothing" as possible. That unfortunately means you have to define it yourself. As an example I personally use "" when I can't pass a null String, null object number for me is -1 (mostly because by default most database sequences start at 1 and we use those for item id:s a lot so -1 is dead giveaway it's a null object), with lists/maps/sets it's <code>Collections.EMPTY_SET</code>, <code>EMPTY_MAP</code> or <code>EMPTY_LIST</code> and so on and so forth. If I have custom class I have to create a null object from, I remove all actual data from it and see where that takes me and then apply what I just mentioned until it's "empty".</p>
<p>So you really don't "know" which value to return by default, you just have to decide it by yourself.</p>
http://stackoverflow.com/questions/312642/how-many-classes-per-package-methods-per-class-lines-per-method/312870#3128700Answer by P Arrayah for how many classes per package? methods per class? lines per method?P Arrayah2008-11-23T19:47:01Z2008-11-23T19:47:01Z<p>(note: tl;dr available at the very bottom for my real opinion)</p>
<p>I'm not going to quote any big name and say that's the right answer because it's always very case dependant how you do all this stuff. For example the number of methods: If you're making a control software for modern HD LCD TV's remote controller which has about 40-50 buttons, how can you break that down into classes <strong>coherently</strong> so that you only have like, say, 7 methods per class?</p>
<p>Personally I like to keep all the methods of one accessor level in one class which means some utility classes may end up having hundreds of methods but in my opinions it's easier to do something like <code>StringUtil.escapeXMLspecialCharacters(someString)</code> than <code>StringUtil.XML.escapeSpecialCharacters(someString)</code> or <code>XMLUtil.escapeSpecialCharacters(someString)</code>. While these all are seemingly OK solutions, the first one thrives (at least in my mind, that is!) because it's simple and very easy way to access that method: You don't have to think if the string you're handling contains XML or XHTML or JSON or whatever, you'll just pick one method from the general group of methods and that's it.</p>
<p>Keeping on the previous TV remote analogy, lets assume you do split them to various classes anyway. If we allow ourselves to have 7 of such methods per class on average and manage to group the buttons on the remote to sensical groups like <code>MenuButtons</code>, <code>AdjustmentButtons</code> and 'NumberSelectorButtons', we end up with 8 or so classes. That's not a bad thing actually, but it gets slightly confusing easily especially if they're not divided to sensical groups with great care. Just imagine the rants around your TVRemotes'R'Us Inc. office: "Who says the power on/off button is a control button?" "Who's the joker who put volume +/- to menu buttons? PRE/CH <em>(the button which switches between current and previous channel and/or image source)</em> button isn't a number button!" "The guide button opens both tv guide AND navigational menu depending on context, what are we going to do with it!?"</p>
<p>So as you can hopefully see from this example, using some arbitrary number to limit yourself could introduce some unneeded complexity and break the logical flow of the application.</p>
<p>Before I throw in my last two cents, one thing about the number of lines per method: Think code as blocks. Each loop is a block, each conditional is a block and so on and so forth. What is the minimum amount of these blocks needed for a unit of code which has a single responsibility? That should be your limiter, not the desire to have "Seven everywhere." from number of classes in package, methods in classes and lines of code in methods.</p>
<p>And here's the <strong>TL;DR</strong>:</p>
<p>So, my real opinion is actually this: The number of classes in package should be fairly low. I've been lately starting to do the following but I'm not sure if I'll keep up to it:</p>
<ul>
<li>Package <code>foo</code> contains interfaces and other common classes for implementations.</li>
<li>Package <code>foo.bar</code> contains implementation of said interfaces for function <code>bar</code></li>
<li>Package <code>foo.baz</code> contains implementation of said interfaces for function <code>baz</code></li>
</ul>
<p>This usually means my whole structure has a coherent (and most likely low) number of classes and by reading the top level class interfaces (and their comments) I should be able to understand the other packages too.</p>
<p>Methods per class: All which are needed as I explained above. If your class can't live without 170 methods, then let it have them. Refactoring is a virtue, not something that can be applied all the time.</p>
<p>Lines per method: As low as possible, I usually end up with 10 to 25 lines per method and 25 is a bit high for me so I'd say 10 is a good balance point for that.</p>
http://stackoverflow.com/questions/241342/is-it-possible-to-display-swing-components-in-a-jsp/312829#3128290Answer by P Arrayah for Is it possible to display Swing components in a JSP?P Arrayah2008-11-23T19:09:30Z2008-11-23T19:09:30Z<p>Assuming you're familiar with Swing, you may want to introduce yourself to <a href="http://wicket.apache.org/" rel="nofollow">Apache Wicket</a> which is very similar to the way you build web pages as Swing is to building GUI:s. That is, in Wicket you add new instancef of Label, Button, DataTable etc. etc. to page and link those to bean property data which is then ultimately transformed to fully functioning web page.</p>
<p>As for the actual question, you really can't do it as-is. If choosing a new/different/another web framework to help you isn't possible, the only proper way I can think of is doing what sblundy suggested.</p>
http://stackoverflow.com/questions/296325/is-there-any-other-strongly-integrated-presentation-layer-tool-other-than-jsf-jsp/296645#2966450Answer by P Arrayah for Is there any other strongly-integrated presentation layer tool other than JSF/JSP for Java EE?P Arrayah2008-11-17T19:47:21Z2008-11-17T19:47:21Z<p>The ideology behind beans is nowadays in any proper Java framework I know of. As rich mentioned, Spring is a good/great all-around business logic framework (check out its <a href="http://static.springframework.org/spring/docs/2.5.x/api/org/springframework/jdbc/core/package-summary.html" rel="nofollow">jdbc template</a> classes, those are simply awesome - another great gem is <a href="http://static.springframework.org/spring/docs/2.5.x/reference/beans.html" rel="nofollow">applicationContext.xml</a> which is ) and for view layer I personally prefer <a href="http://wicket.apache.org/" rel="nofollow">Apache Wicket</a>.</p>
<p>I don't believe you should make your own but instead find a framework that suits your needs and start contributing to its code base, that way you get to start with an already formed user base and your code will get authored more thoroughly which in turn will make you a better programmer.</p>
http://stackoverflow.com/questions/291286/java-not-converting-string-to-long-object-properly/291322#2913222Answer by P Arrayah for Java Not Converting String to Long Object ProperlyP Arrayah2008-11-14T20:33:52Z2008-11-14T20:33:52Z<p>Trace through the program following the path of the String all the way to database and make unit tests for every single method on that path. And don't just take the shortest possible route here, make multiple unit tests with different inputs and expected outputs to really see what went possibly wrong. Assuming you don't find any errors, run the same unit tests on the other computer and you should be able to pinpoint the bug. From the top of my head I'd assume it may have something to do with case sensitivity but there really is no way to be sure.</p>
<p>Next time, use TDD.</p>
http://stackoverflow.com/questions/281933/how-to-rewrite-this-block-of-code-using-a-stringbuilder-in-java/282115#282115-2Answer by P Arrayah for How to rewrite this block of code using a StringBuilder in Java?P Arrayah2008-11-11T20:57:58Z2008-11-11T20:57:58Z<p>I would NOT recommend using any regex for this, those are actually all painfully slow when you're doing simple operations. Instead I'd recommend you start with something like this</p>
<pre><code>// usage:
Map<String, String> replaceRules = new HashMap<String, String>();
replaceRules.put("ao", "1");
replaceRules.put("df", "2");
replaceRules.put("n", "3");
String s = replacePartsOf("foobooandfoo", replaceRules);
// actual method
public String replacePartsOf(String thisString, Map<String, String> withThese) {
for(Entry<String, String> rule : withThese.entrySet()) {
thisString = thisString.replaceAll(rule.getKey(), rule.getValue());
}
return thisString;
}
</code></pre>
<p>and after you've got that working, refactor it to use character arrays instead. While I think what you want to do can be done with StringBuilder it most likely won't be worth the effort.</p>
http://stackoverflow.com/questions/266370/how-do-i-unit-test-jdbc-code-in-java/274752#2747521Answer by P Arrayah for How do I unit test jdbc code in java?P Arrayah2008-11-08T14:09:08Z2008-11-08T14:09:08Z<p>While the way to mock jdbc in your application is of course dependant on how you've implemented your actual jdbc transactions.</p>
<p>If you're using jdbc as is, I'd assume you have written yourself an utility class of sorts to do some tasks in the line of <code>DBUtils.getMetadataFor(String tablename)</code>. What this would mean is that you'd have to create a mock of that class and that could be all you need. This would be rather easy solution for you since you apparently already have a series of jdbc related mock objects available. Note that I'm assuming your jdbc code isn't exploded all around the application - if it is, refactor!!!</p>
<p>If you're however using any framework for database handling (like Spring Framework's JDBC Template classes) you can and should mock the interface class using EasyMock or some other equivalent. That way you can have all the power in the world required for easy mocking of the connection.</p>
<p>And last if nothing else works, you can do what others have said already and use DBUnit and/or derby.</p>
http://stackoverflow.com/questions/256859/is-there-a-performance-difference-between-a-for-loop-and-a-for-each-loop/257009#2570095Answer by P Arrayah for Is there a performance difference between a for loop and a for-each loop?P Arrayah2008-11-02T16:10:44Z2008-11-02T16:10:44Z<p>All these loops do the exact same, I just want to show these before throwing in my two cents.</p>
<p>First, the classic way of looping through List:</p>
<pre><code>for(int i=0;i<strings.size();i++) { /* do something using strings.get(i) */ }
</code></pre>
<p>Second, the preferred way since it's less error prone (how many times have YOU done the "oops, mixed the variables i and j in these loops within loops" thing?).</p>
<pre><code>for(String s : strings) { /* do something using s */ }
</code></pre>
<p>Third, the micro-optimized for loop:</p>
<pre><code>int size = strings.size();
for(int i=0;++i<=size;) { /* do something using strings.get(i) */ }
</code></pre>
<p>Now the actual two cents: At least when I was testing these, the third one was the fastest when counting milliseconds on how long it took for each type of loop with a simple operation in it repeated a few million times - this was using Java 5 with jre1.6u10 on Windows in case anyone is interested.</p>
<p>While it at least seems to be so that the third one is the faster, you really should ask yourself if you want to take the risk of implementing this peephole optimization everywhere in your looping code since from what I've seen, actual looping isn't usually the most time consuming part of any real program (or maybe I'm just working on the wrong field, who knows). And also like I mentioned in the pretext for the Java <em>for-each loop</em> (some refer to it as <em>Iterator loop</em> and others as <em>for-in loop</em>) you are less likely to hit that one particular stupid bug when using it. And before debating how this even can even be faster than the other ones, remember that javac doesn't optimize bytecode at all (well, nearly at all anyway), it just compiles it.</p>
<p>If you're into micro-optimization though and/or your software uses lots of recursive loops and such then you may be interested in the third loop type. Just remember to benchmark your software well both before and after changing the for loops you have to this odd, micro-optimized one.</p>
http://stackoverflow.com/questions/346793/json-to-string-in-prototype/346795#346795Comment by P Arrayah on JSON to string in PrototypeP Arrayah2008-12-06T22:25:38Z2008-12-06T22:25:38ZThere's four libraries available at json.org for the functionality and from what I've read and understood JSON support already is in most mainline browsers (with the natural exception of IE7 of course), I'm a bit confused by this, for me this is like asking if I should drink water if I'm thirsty.http://stackoverflow.com/questions/293070/positive-lookahead-for-exclamation-markComment by P Arrayah on Positive lookahead for exclamation markP Arrayah2008-11-16T06:15:14Z2008-11-16T06:15:14ZFor a lot easier and less error-prone regexping with Java I recommend <a href="http://myregexp.com/" rel="nofollow">myregexp.com</a> This site contains an applet for constructing Java regex AND it's also available as a plugin for Eclipse.http://stackoverflow.com/questions/288200/prime-number-calculation-funComment by P Arrayah on Prime number calculation funP Arrayah2008-11-13T20:48:25Z2008-11-13T20:48:25ZSometimes else blocks slow down a lot so try to get rid of that too and see if it helps. Obviously current is increased by 1 in each loop so instead of that if..else I'd put if(current!=2) { current++; } current++; in its place.http://stackoverflow.com/questions/281933/how-to-rewrite-this-block-of-code-using-a-stringbuilder-in-java/282115#282115Comment by P Arrayah on How to rewrite this block of code using a StringBuilder in Java?P Arrayah2008-11-12T20:26:48Z2008-11-12T20:26:48ZI merely meant for him to follow the logic of the snippet above, not to use it exactly. I did say he should "refactor it[the code] to use character arrays instead".http://stackoverflow.com/questions/242438/java-performance-of-stringbuilder-in-a-loop/242455#242455Comment by P Arrayah on Java performance of StringBuilder in a loopP Arrayah2008-11-11T21:00:48Z2008-11-11T21:00:48ZUse sb.setLength(0); instead, it's the fastest way to empty the contents of StringBuilder against recreating object or using .delete(). Note that this doesn't apply to StringBuffer, its concurrency checks nullify the speed advantage.http://stackoverflow.com/questions/273943/question-about-decorator-pattern/274394#274394Comment by P Arrayah on Question about decorator patternP Arrayah2008-11-08T14:12:15Z2008-11-08T14:12:15ZI have to second this, the book is incredible. In fact the coffee example above is taken from that book but the book takes that example a lot further.