User Outlaw Programmer - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T01:31:06Z http://stackoverflow.com/feeds/user/1471 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1732242/java-is-there-support-for-macros/1732258#1732258 0 Answer by Outlaw Programmer for Java: Is there support for macros? Outlaw Programmer 2009-11-13T22:19:30Z 2009-11-13T22:19:30Z <p>Nope, no macros. For this case, the closest you can get is to create new Runnable instance and pass it to either a function of your own creation or an ExecutorService, which will start the task for you.</p> <p>With Java, there's no good way to get rid of this "boilerplate" code, mainly because you can't pass pointers to functions; everything needs to be an object.</p> http://stackoverflow.com/questions/1732167/java-swing-repaint/1732202#1732202 1 Answer by Outlaw Programmer for java swing repaint() Outlaw Programmer 2009-11-13T22:06:01Z 2009-11-13T22:06:01Z <p>It looks like you're never actually removing anything from 'boardPanel,' even though you are resetting its LayoutManager.</p> <p>A safer approach might be to remove 'boardPanel' from its container, then create a new instance for 'boardPanel,' add that to the container, then add the other JPanel pieces to this new 'boardPanel.' Effectively, you would be reconstructing the entire JPanel hierarchy after every move. </p> <p>As you've noticed, Swing can be quite finicky once you start trying to add/move/remove components after they've been added to containers. For games, often the best approach would be to have 1 JComponent/Component and use Java2D methods to draw on top of it. Swing is typically only used for forms-based applications.</p> http://stackoverflow.com/questions/1675536/java-polymorphism-problem/1675552#1675552 9 Answer by Outlaw Programmer for Java Polymorphism problem Outlaw Programmer 2009-11-04T17:52:54Z 2009-11-04T17:52:54Z <p>Your subclasses (Alien and Player) aren't overriding the move() method in their parent class because you have declared 'delta' as a long and not a double.</p> <p>You can have the compiler spot some of these errors by using the @Override annotation.</p> http://stackoverflow.com/questions/1574089/multiplication/1574147#1574147 6 Answer by Outlaw Programmer for Multiplication........... Outlaw Programmer 2009-10-15T18:18:31Z 2009-10-15T18:18:31Z <p>There is a bunch of overhead involved in creating threads, even when using an ExecutorService. I suspect the reason why you're multithreaded approach is so slow is that you're spending 99% creating a new thread and only 1%, or less, doing the actual math.</p> <p>Typically, to solve this problem you'd batch a whole bunch of operations together and run those on a single thread. I'm not 100% how to do that in this case, but I suggest breaking your matrix into smaller chunks (say, 10 smaller matrices) and run those on threads, instead of running each cell in its own thread.</p> http://stackoverflow.com/questions/1563570/java-swap-two-keys-in-a-map/1563583#1563583 1 Answer by Outlaw Programmer for Java swap two keys in a Map Outlaw Programmer 2009-10-13T23:53:58Z 2009-10-13T23:53:58Z <p>This method will swap the <i>values</i> for two keys:</p> <pre><code>public void swap(Object key1, Object key2, Map map) { Object temp = map.get(key1); map.put(key1, map.get(key2)); map.put(key2, temp); } </code></pre> <p>Yes, you do need to save the value for 1 of the keys, otherwise it will be lost when replacing key1's value with key2's.</p> http://stackoverflow.com/questions/1563502/java-setting-values-from-a-map-to-a-set/1563546#1563546 1 Answer by Outlaw Programmer for Java setting values from a Map to a Set Outlaw Programmer 2009-10-13T23:41:29Z 2009-10-13T23:41:29Z <p>Not 100% exactly what you mean, but how about this:</p> <pre><code>public static&lt;K,E&gt; void values(Map&lt;K, Set&lt;E&gt;&gt; m1, Map&lt;K, List&lt;E&gt;&gt; m2) { for(K key : m1.keySet()) { Set&lt;E&gt; source = m1.get(key); List&lt;E&gt; dest = m2.get(key); if(dest == null) { dest = new ArrayList&lt;E&gt;(); m2.put(key, dest); } dest.addAll(source); } } </code></pre> http://stackoverflow.com/questions/1562594/making-java-tic-tac-toe-server-multithreaded/1562702#1562702 1 Answer by Outlaw Programmer for Making Java Tic Tac Toe Server Multithreaded Outlaw Programmer 2009-10-13T20:22:54Z 2009-10-13T20:22:54Z <p>First, completely separate the actual Tic-Tac-Toe stuff from your communication layer. Your communication layer should basically receive a message from any client, figure out which Tic-Tac-Toe instance belongs to this client, then dispatch the message. Similarly, the Tic-Tac-Toe instance might need to send a message to its players through the communication layer.</p> <p>I imagine that your TicTacToe class will have a very simple API that looks like:</p> <pre><code>public Result mark(int row, int col, int playerID); </code></pre> <p>Where Result can either be something like VALID, INVALID_MOVE, PLAYER_WINS, or DRAW, or something like that. With an interface like this, you can easily create a single-player version of the game before you move on to the networking stuff.</p> <p>In the end, you'll need 1 thread which exclusively calls serverSocket.await(), waits for 2 incoming connections, then creates a new Tic-Tac-Toe instance. Anytime a message comes from either of these 2 clients, you'll dispatch it to that particular instance. You need some way to lookup the TicTacToe instance for the given socket, extract the message from the input stream, modify the TicTacToe instance, then send a message back to the 2 player clients.</p> <p>You'll also need an additional thread for each individual socket connection. Everytime you try to read from a socket's input stream, you'll need to wait for some data to actually be sent from the client. This is where the threads come into play.</p> <p>Oh, by the way, the java.util.concurrent package provides ways to make your network server more scalable and efficient but its pretty complicated. Also, most ways of using it are actually single-threaded (which is actually why it's more scalable, believe it or not). I recommend steering clear for this assignment.</p> http://stackoverflow.com/questions/1562079/how-to-stop-the-execution-of-executor-threadpool-in-java/1562093#1562093 5 Answer by Outlaw Programmer for How to stop the execution of Executor ThreadPool in java? Outlaw Programmer 2009-10-13T18:30:36Z 2009-10-13T18:38:24Z <p>The <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ExecutorService.html" rel="nofollow">ExecutorService</a> class has 2 methods just for this: <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ExecutorService.html#shutdown%28%29" rel="nofollow">shutdown()</a> and <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ExecutorService.html#shutdownNow%28%29" rel="nofollow">shutdownNow()</a>.</p> <p>After using the shutdown() method, you can call <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ExecutorService.html#awaitTermination%28long,%20java.util.concurrent.TimeUnit%29" rel="nofollow">awaitTermination()</a> to block until all of the started tasks have completed. You can even provide a timeout to prevent waiting forever.</p> <p>You might want to click on some of these links that I'm providing. They go straight to the docs where you can readup on this stuff yourself.</p> http://stackoverflow.com/questions/354349/javadb-is-it-possible-to-change-auto-increment-offset-on-existing-table 0 JavaDB: Is it possible to change auto-increment offset on existing table? Outlaw Programmer 2008-12-09T21:47:06Z 2009-10-02T12:42:10Z <p>Is it possible to change the auto-increment offset on a pre-existing table with JavaDB? </p> <p>I'm having a problem where inserting new records usually (but not always) fails with an error complaining about using an existing key (my auto-increment column). To populate this database, I took a dump from another database (MySQL) and used a JavaDB stored procedure to insert them all into the corresponding JavaDB table. My theory is that inserting these records copied the existing IDs from the MySQL table. Now the auto-increment functionality is dishing out existing IDs. I figure explicitly setting the offset to some high number will allow the auto-increment to work again.</p> http://stackoverflow.com/questions/1406640/basic-source-control/1406784#1406784 5 Answer by Outlaw Programmer for Basic Source control Outlaw Programmer 2009-09-10T17:58:30Z 2009-09-10T17:58:30Z <p>Why does this guy get his own source control? Shouldn't he use the same one your team is using? Also, if he's absolutely 100% dead-set against an SCM, couldn't you guys just work on a script that pushes his local files to your repository while creating an old-school backup dir on his own disk?</p> http://stackoverflow.com/questions/1405488/autocomplete-parameter-names-in-eclipse-without-source/1405518#1405518 1 Answer by Outlaw Programmer for Autocomplete Parameter names in Eclipse Without Source Outlaw Programmer 2009-09-10T14:08:53Z 2009-09-10T17:52:03Z <p>Parameter names, like local variables, are removed when the source code gets compiled down to byte-code. Even if you have @param elements in the Javadoc, they aren't guaranteed to be in any order and some can even be missing. I don't think there is a reliable way for the IDE to reconstruct which @param maps to which parameter using the Javadoc alone.</p> http://stackoverflow.com/questions/1405350/tomcat-set-cookie-value-multiple-times-for-1-request 0 Tomcat: Set cookie value multiple times for 1 request? Outlaw Programmer 2009-09-10T13:34:46Z 2009-09-10T16:19:12Z <p>I'm running into a problem with Apache Tomcat 6.0.20 where I can't change a cookie's value once it has been added to the response. Basically, I'm trying to replicate Session functionality using cookies. I have a custom "Session" object, which is backed by a cookie. When I create my Session, I pass it an HttpServletResponse, and it creates and adds a blank cookie to the response. Then, when my code calls the Session.put() method, I want to change the value of this cookie. </p> <p>What I'm seeing is that once the cookie has been added to the response, any calls to Cookie.setValue() are basically useless. Using a debugger, I can see that the cookie itself is being modified but the Set-Cookie header in the response object remains unchanged (it contains the initial value of the cookie, usually just an empty string). I've even tried creating a new cookie and re-adding it to the response but this has no effect on the Set-Cookie header either.</p> <p>The weird thing is I'm using a library written a few years ago by our own developers. In the past we used the JRun 3.1 web server, so I'm guessing maybe each web server handles these cookie operations differently.</p> <p>Has anyone run into this problem before? The only solution I have now that's guaranteed to work is not adding the cookie to the response until I'm sure I'm done with my custom Session object. I can create a method called Session.saveTo(HttpServletResponse) which will add the cookie to the response. This works but some of our JSPs can be pretty complicated so I'd rather have the Session "auto-save" on every put in case I forget to call Session.saveTo().</p> <p>To clarify, this is effectively what I'm doing:</p> <pre><code>Cookie cookie = new Cookie("custom-session", "initial"); response.addCookie(cookie); // Set-Cookie header has 'custom-session=initial' cookie.setValue("new value"); // does not change Set-Cookie header response.addCookie(cookie); // re-adding the same cookie, does not work either </code></pre> <p>After all of that, my browser creates a cookie where custom-session is "inital", not the last value that I set.</p> http://stackoverflow.com/questions/1405350/tomcat-set-cookie-value-multiple-times-for-1-request/1405934#1405934 1 Answer by Outlaw Programmer for Tomcat: Set cookie value multiple times for 1 request? Outlaw Programmer 2009-09-10T15:17:30Z 2009-09-10T15:17:30Z <p>It turns out to be a bug/design feature in Tomcat 6. Our old web server, JRun 3.1, did not create the Set-Cookie response headers until the response was commited. This meant you could modify the cookies all you wanted any time before that. However, looking at the source code, Tomcat creates the Set-Cookie header as soon as you add the cookie to the response. The Tomcat Response object keeps handles to the Cookie objects but does nothing with them.</p> <p>With Tomcat, as soon as you add a Cookie to the response, there is no way to change it.</p> http://stackoverflow.com/questions/726144/javascript-easier-way-to-format-numbers 2 Javascript: Easier way to format numbers? Outlaw Programmer 2009-04-07T14:50:26Z 2009-09-07T03:46:50Z <p>I'm trying to format various numbers on my page. These numbers either represent a price, a change in price, or a percentage. I know Javascript has functions to limit the number of decimal places, but is there any support for other types of formatting, such as grouping numbers with commas, controlling whether or not the +/- is shown, etc? Here's what I have so far:</p> <pre><code>var FORMATTER = { price : function(value) { return '$' + value.toFixed(2); }, pricePer : function(value) { return (value * 100).toFixed(2) + '%'; }, priceChg : function(value) { return (value &gt;= 0 ? '+' : '-') + '$' + Math.abs(value).toFixed(2); } }; </code></pre> <p>It works OK, but it'd like to add commas to the 'price' formatter, and you can see that there's a hack in the 'priceChg' formatter where I try to move the +/- sign in front of the '$' sign.</p> <p>Basically, I'm hoping there is some library out there (jQuery is OK) that emulates Java's DecimalFormat class.</p> http://stackoverflow.com/questions/179415/java2d-is-it-always-safe-to-cast-graphics-into-graphics2d 0 Java2D: Is it always safe to cast Graphics into Graphics2D Outlaw Programmer 2008-10-07T16:56:21Z 2009-09-01T20:25:47Z <p>Assuming we always use a Sun JVM (say, 1.5+), is it always safe to cast a Graphics reference to Graphics2D? </p> <p>I haven't seen it cause any problems yet and, to my understanding, the Graphics class is legacy code but the Java designers didn't want to change the interfaces for Swing and AWT classes in order to preserver backwards compatibility.</p> http://stackoverflow.com/questions/1342294/jdk-7-swingworker-deadlocks/1342368#1342368 0 Answer by Outlaw Programmer for JDK-7 SwingWorker deadlocks? Outlaw Programmer 2009-08-27T16:56:48Z 2009-08-27T16:56:48Z <p>Looking at the source code for SwingWorker, it looks like an ExecutorService is being used as a pool of worker threads. It's possible that the type of ExecutorService used has changed between Java 6 and Java 7. It looks like your code will deadlock if the ExecutorService only manages exactly 1 thread at a time (as you seem to have noticed).</p> <p>This is because your 'sw2.get()' call will block the current thread, which is the same thread the sw2 will try to use. sw2 can never execute because the first worker is blocking.</p> <p>I think the best solution is to change your logic so that you don't call chains of Swing workers like this.</p> http://stackoverflow.com/questions/20034/is-project-darkstar-realistic 12 Is Project Darkstar Realistic? Outlaw Programmer 2008-08-21T14:13:11Z 2009-07-18T19:31:45Z <p><a href="http://www.projectdarkstar.com/" rel="nofollow">Project Darkstar</a> was the topic of the monthly <a href="http://www.javasig.com/meeting/home.xhtml" rel="nofollow">JavaSIG</a> meeting down at the Google offices in NYC last night. For those that don't know (probably everyone), Project Darkstar is a framework for massively multiplayer online games that attempts to take care of all of the "hard stuff." The basic idea is that you write your game server logic in such a way that all operations are broken up into tiny tasks. You pass these tasks to the Project Darkstar framework which handles distributing them to a specific node in the cluster, any concurrency issues, and finally persisting the data.</p> <p>Apparently doing this kind of thing is a much different problem for video games than it is for enterprise applications. Jim Waldo, who gave the lecture, claims that MMO games have a DB read/write ratio of 50/50, whereas enterprise apps are more like 90% read, 10% write. He also claims that most existing MMOs keep everything in memory exlcusively, and only dump to a DB every 6 hours of so. This means if a server goes down, you would lose all of the work since the last DB dump.</p> <p>Now, the project itself sounds really cool, but I don't think the industry will accept it. First, you have to write your server code in Java. The client code can be written in anything (Jim claims ActionScript 3 is the most popular, follow by C++), but the server stuff has to be Java. Sounds good to me, but I really get the impression that everyone in the games industry hates Java.</p> <p>Second, unlike other industries where developers prefer to use existing frameworks and libraries, the guys in the games industry seem to like to write everything themselves. Not only that, they like to rewrite everything for every new game they produce. Things are starting to change where developers are using Havok for physics, Unreal Engine 3 as their platform, etc., but for the most part it looks like everything is still proprietary.</p> <p>So, are the guys at Project Darkstar just wasting their time? Can a general framework like this really work for complex games with the performance that is required? Even if it does work, are game companies willing to use it?</p> http://stackoverflow.com/questions/957097/java-servlet-how-to-handle-unknown-encodings 0 Java Servlet: How to handle unknown encodings? Outlaw Programmer 2009-06-05T17:24:21Z 2009-06-05T17:43:01Z <p>When a certain user tries to view our web page, a NullPointerException with the message 'charsetName' is thrown when we call response.getWriter(). I decompiled our web server's response class (JRun 3.1) and found that this error is being thrown when it does this:</p> <pre><code>s = getCharacterEncoding(); // returns 'x-mac-roman' I believe try { outWriter.exchangeWriter(new OutputStreamWriter(bufStream, s)); } catch(UnsupportedEncodingException unsupportedencodingexception) { s = MIME2Java.convert(s); // looks like this returns null outWriter.exchangeWriter(new OutputStreamWriter(bufStream, s)); // NPE!!! } </code></pre> <p>I was finally able to reproduce this bug when I forced my browser to send a request header of 'Accept-Charset=x-mac-roman,utf-8', which is what the user's browser seems to do.</p> <p>This is webserver code so I can't make any changes here, but this there something we can do on our end to ensure this never happens. Can we explicitly force the webserver to use a certain encoding and not leave it up to the requests?</p> http://stackoverflow.com/questions/883966/overcoming-heap-overflow-issues/884065#884065 0 Answer by Outlaw Programmer for Overcoming heap overflow issues Outlaw Programmer 2009-05-19T17:28:26Z 2009-05-19T17:28:26Z <p>The first problem I saw was a NegativeArraySizeException when running your program with SIZE = 100. I guess this has something to do with how each recursive call is decreasing the size by 2.</p> <p>I believe that Steven's comment is right on the money. You are allocating the size of the array, them making a recursive call. This causes (SIZE - 1) number of arrays to be allocating, eating up all of your memory. Removing that one line should prevent any memory from being allocated until necessary.</p> http://stackoverflow.com/questions/781458/convert-java-gui-builder-form-files-to-source-code/783287#783287 3 Answer by Outlaw Programmer for Convert Java GUI Builder .form files to Source Code? Outlaw Programmer 2009-04-23T19:55:32Z 2009-04-23T19:55:32Z <p>My understanding is that the ".form" files are only used by the Netbeans GUI builder to keep track of where the GUI components are. When you add components in the design view, Netbeans automatically updates the actual source (.java) files. You [i]can[/i] actually modify these .java files directly to, say, change the label on a button, but if you do it within Netbeans, it will use the .form files to automatically regenerate the source files, destroying your manual changes.</p> <p>In my experience, once you make the decision to modify the .java files manually, the .form files become out of sync and you will no longer be able to use the Netbeans GUI builder properly.</p> http://stackoverflow.com/questions/769701/is-there-a-way-to-detect-when-an-html-element-is-hidden-from-view 0 Is there a way to detect when an HTML element is hidden from view? Outlaw Programmer 2009-04-20T19:12:14Z 2009-04-20T19:25:11Z <p>Using Javascript, is it possible to detect when a certain element is no longer visible, such as when the user scrolls down far enough or when the browser is minimized or covered with another window? The overall goal is to swap out an advertisement only when the current ad is not visible to the user.</p> <p>One idea would be to have a very simple, invisible Java Applet communicate with the page every time the paint() method is called. I'm pretty sure this would work but I'd like to avoid using applets if possible.</p> http://stackoverflow.com/questions/769680/adding-an-arraylist-into-a-class-what-does-it-do/769735#769735 1 Answer by Outlaw Programmer for Adding an ArrayList into a class - what does it do? Outlaw Programmer 2009-04-20T19:20:40Z 2009-04-20T19:20:40Z <p>With the first method, you need to expose methods that allow client code to add stuff to those lists. So, you could have:</p> <pre><code>public class Lecturer { List&lt;Course&gt; courses = new ArrayList&lt;Course&gt;(); // a list to hold the courses public Lecturer(String idIn, String nameIn) { /* do stuff */ } public void addCourse(Course newCourse) { this.courses.add(newCourse); } } </code></pre> <p>You can do something similar for the Course class. Once you have those set up, you can do something like this:</p> <pre><code>public static void main(String[] args) { Lecturer bob = new Lecturer(1, "Bob Smith"); Course math = new Course("Math 101"); // wire them together such that Bob teaches Math 101 bob.addCourse(math); math.addLecturer(bob); } </code></pre> <p>I think that solves what you're asking, but having this 2-way, circular relationship is sometimes a sign of a bad design. Only you know what you're real assignment is, though, so I hope this helps!</p> http://stackoverflow.com/questions/763543/in-java-how-do-i-access-the-outer-class-when-im-not-in-the-inner-class/763642#763642 1 Answer by Outlaw Programmer for In Java, how do I access the outer class when I'm not in the inner class? Outlaw Programmer 2009-04-18T15:46:23Z 2009-04-18T15:46:23Z <p>Can't you just do something like this:</p> <pre><code>public static class Inner { // static now private final Outer parent; public Inner(Outer parent) { this.parent = parent; } public Outer get Outer() { return parent; } } </code></pre> http://stackoverflow.com/questions/703699/what-tools-exist-that-let-me-dump-and-recreate-a-database-from-java/703710#703710 3 Answer by Outlaw Programmer for What Tools Exist that let me Dump and Recreate a Database from Java? Outlaw Programmer 2009-04-01T01:32:22Z 2009-04-01T01:32:22Z <p>Not sure if this is exactly what you need, but I've used <a href="http://db.apache.org/ddlutils/" rel="nofollow">Apache's DDLUtils</a> library to do similar things in the past. For my project, we actually needed to move both the schema AND data from MySQL to JavaDB and this library made it pretty straightforward.</p> http://stackoverflow.com/questions/699072/is-there-a-way-to-search-for-and-access-threads-that-are-currently-running/699160#699160 1 Answer by Outlaw Programmer for Is there a way to search for and access Threads that are currently running? Outlaw Programmer 2009-03-30T21:45:23Z 2009-03-30T21:45:23Z <p>Even if you had access to these Threads, what would you do with that knowledge? How would you tell what that Thread is currently doing?</p> <p>If you have a service that can be accessed from multiple places, but you want to guarantee only a single thread will be used by this service, you can set up a work queue like this:</p> <pre><code>public class FileService { private final Queue workQueue = new ArrayBlockingQueue(100/*capacity*/); public FileService() { new Thread() { public void run() { while(true) { Object request = workQueue.take(); // blocks until available doSomeWork(request); } } }.start(); } public boolean addTask(Object param) { return workQueue.offer(param); // return true on success } } </code></pre> <p>Here, the ArrayBlockingQueue takes care of all the thread safety issues. addTask() can be called safely from any other thread; it will simply add a "job" to the workQueue. Another, internal thread will constantly read from the workQueue and perform some operation if there's work to do, otherwise it will wait quietly.</p> http://stackoverflow.com/questions/693550/linking-two-abstract-factory-patterns-in-java/693601#693601 1 Answer by Outlaw Programmer for Linking two Abstract Factory Patterns in Java. Outlaw Programmer 2009-03-28T21:54:20Z 2009-03-28T22:01:27Z <p>Seems to me like you're missing an important concept, a Question class. This is constructed with both a Mode and a Quote, can give out the right question and call tell you if the answer is correct:</p> <pre><code>public class Question { public Question(Mode mode, Quote quote) { /* store these */ } public String getQuestion() { return quote.getQuote() + (mode == Mode.EASY ? quote.getAuthor() : ""); } public boolean isCorrect(String answer) { return quote.getFullQuote().equals(answer); } } </code></pre> <p>My idea here is that the Quote itself isn't really changing between Modes, just which parts of the Quote are presented to the user. With this approach, you can have one single repository of Quote objects that can be used anywhere by anyone. The Question is responsible for displaying the right amount of information to the user and deciding whether or not they have the right response.</p> http://stackoverflow.com/questions/682975/exception-handling-and-memory/682996#682996 0 Answer by Outlaw Programmer for Exception handling and memory Outlaw Programmer 2009-03-25T19:03:16Z 2009-03-25T19:03:16Z <p>The stack trace is built when the exception is created. Printing the stack trace doesn't do anything more memory intensive than printing anything else.</p> <p>The try/catch block might have some performance overhead, but not in the form of increased memory requirements.</p> http://stackoverflow.com/questions/529432/java-format-number-in-millions 1 Java: Format number in millions Outlaw Programmer 2009-02-09T19:06:23Z 2009-03-25T19:00:32Z <p>Is there a way to use DecimalFormat (or some other standard formatter) to format numbers like this:</p> <blockquote> <p>1,000,000 => 1.00M</p> <p>1,234,567 => 1.23M</p> <p>1,234,567,890 => 1234.57M</p> </blockquote> <p>Basically dividing some number by 1 million, keeping 2 decimal places, and slapping an 'M' on the end. I've thought about creating a new subclass of NumberFormat but it looks trickier than I imagined.</p> <p>I'm writing an API that has a format method that looks like this:</p> <pre><code>public String format(double value, Unit unit); // Unit is an enum </code></pre> <p>Internally, I'm mapping Unit objects to NumberFormatters. The implementation is something like this:</p> <pre><code>public String format(double value, Unit unit) { NumberFormatter formatter = formatters.get(unit); return formatter.format(value); } </code></pre> <p>Note that because of this, I can't expect the client to divide by 1 million, and I can't just use String.format() without wrapping it in a NumberFormatter.</p> http://stackoverflow.com/questions/677739/preloading-java-classes-libraries-at-jar-startup/677795#677795 1 Answer by Outlaw Programmer for Preloading java classes/libraries at jar startup? Outlaw Programmer 2009-03-24T15:00:51Z 2009-03-24T15:00:51Z <p>One thing you might want to try is writing a simple client inside of the Java server itself. This client does nothing but call some method in the server when it starts up, forcing the classes to be loaded. After this little client gets a result (or callback), then it puts the server into an "accessible by the outside world" state.</p> http://stackoverflow.com/questions/677582/java-exception-must-be-thrown-but-how/677603#677603 7 Answer by Outlaw Programmer for Java -- Exception must be thrown, but how? Outlaw Programmer 2009-03-24T14:17:31Z 2009-03-24T14:35:42Z <p>In general, if your code needs to throw a type of Exception that the signature doesn't support, and you have no control over the interface, you can catch and rethrow as a type the interface does support. If your interface doesn't declare ANY checked exceptions, you can always throw a RuntimeException:</p> <pre><code>private void displayCustomerInfo(java.awt.event.ActionEven evt) { try { int custID = Integer.parseInt(customerID.getText()); String info = getCustomerInfo(custID); results.setText(info); } catch (SQLException ex) { throw new RuntimeException(ex); // maybe create a new exception type? } } </code></pre> <p>You almost definitely want to create a new Exception type that extends RuntimeException, and have your client code catch that exception. Otherwise, you run the risk of catching ANY RuntimeException, including NullPointerException, ArrayIndexOutOfBoundsException, etc., which your client code probably can't handle.</p> http://stackoverflow.com/questions/1732011/c-max-integer/1732145#1732145 Comment by Outlaw Programmer on C++: max integer Outlaw Programmer 2009-11-13T22:25:39Z 2009-11-13T22:25:39Z For future reference, StackOverflow works best as a 1 Question -&gt; Many Answer type of thing. If you have a question (and the one you bring up seems reasonable), feel free to post a brand new question. Here, it looks like you're trying to offer advice that others perseive as incorrect. http://stackoverflow.com/questions/1732242/java-is-there-support-for-macros/1732260#1732260 Comment by Outlaw Programmer on Java: Is there support for macros? Outlaw Programmer 2009-11-13T22:20:40Z 2009-11-13T22:20:40Z That's not the craziest thing I've ever heard, but it's darn near close! http://stackoverflow.com/questions/1675536/java-polymorphism-problem/1675547#1675547 Comment by Outlaw Programmer on Java Polymorphism problem Outlaw Programmer 2009-11-04T19:41:24Z 2009-11-04T19:41:24Z Yup, but the way you phrased your answer (&quot;You need to...&quot;) makes it seem like you're suggesting just adding that keyword will somehow trigger the polymorphic call to work. http://stackoverflow.com/questions/1675536/java-polymorphism-problem/1675547#1675547 Comment by Outlaw Programmer on Java Polymorphism problem Outlaw Programmer 2009-11-04T17:53:57Z 2009-11-04T17:53:57Z The annotation doesn't have any magic properties; it's just tells the compiler your intent. Overriding methods should work even if you don't include the annotation. http://stackoverflow.com/questions/1675023/can-i-auto-generate-my-get-set-methods-in-c Comment by Outlaw Programmer on Can I auto-generate my get/set methods in c#? Outlaw Programmer 2009-11-04T17:51:19Z 2009-11-04T17:51:19Z Seems like this is a Visual Studio question, not really a C# question. Also, if you have &quot;LOADS&quot; of fields that can be mutated by an outside client, it might be time to rethink your design. http://stackoverflow.com/questions/1572574/java-fast-data-storage-retrieval/1572643#1572643 Comment by Outlaw Programmer on Java Fast Data Storage & Retrieval Outlaw Programmer 2009-10-15T14:16:31Z 2009-10-15T14:16:31Z -1 from me. You'll need to manually serialize the entire HashMap on each insert, which is obviously very slow. http://stackoverflow.com/questions/1563502/java-setting-values-from-a-map-to-a-set/1563590#1563590 Comment by Outlaw Programmer on Java setting values from a Map to a Set Outlaw Programmer 2009-10-13T23:58:37Z 2009-10-13T23:58:37Z Looks good but I think explicitly setting the initial capacity is a little overkill and might be confusing. http://stackoverflow.com/questions/1563543/excel-deleting-blank-columns-rows Comment by Outlaw Programmer on Excel: deleting blank columns/rows Outlaw Programmer 2009-10-13T23:55:28Z 2009-10-13T23:55:28Z Looking at the history it didn't seem like a programming related question anyway, so I won't bother restoring it. http://stackoverflow.com/questions/1563502/java-setting-values-from-a-map-to-a-set/1563546#1563546 Comment by Outlaw Programmer on Java setting values from a Map to a Set Outlaw Programmer 2009-10-13T23:45:27Z 2009-10-13T23:45:27Z Whoops, I renamed 'receiver' to 'dest' but looks like I missed that line. http://stackoverflow.com/questions/1563479/google-maps-not-functioning-for-me Comment by Outlaw Programmer on Google Maps not functioning for me Outlaw Programmer 2009-10-13T23:44:41Z 2009-10-13T23:44:41Z What makes you think you're code is all &quot;squared away and valid?&quot; I get like 10 javascript errors by just loading the page. http://stackoverflow.com/questions/1562705/question-about-deadlock-situation-in-java/1562720#1562720 Comment by Outlaw Programmer on Question About Deadlock Situation in Java Outlaw Programmer 2009-10-13T20:38:02Z 2009-10-13T20:38:02Z Incidentally, locking the class object would actually prevent the deadlock in this case! http://stackoverflow.com/questions/1562705/question-about-deadlock-situation-in-java Comment by Outlaw Programmer on Question About Deadlock Situation in Java Outlaw Programmer 2009-10-13T20:33:13Z 2009-10-13T20:33:13Z Looks like there are a lot of correct answers here, but I think it might be more helpful to format the responses into 2 separate columns, each representing a different thread. This will really drive home the fact that 2 sets of instructions can be running simultaneously. http://stackoverflow.com/questions/1562705/question-about-deadlock-situation-in-java/1562720#1562720 Comment by Outlaw Programmer on Question About Deadlock Situation in Java Outlaw Programmer 2009-10-13T20:28:55Z 2009-10-13T20:28:55Z Nope, synchronized in a non-static method signature will only lock the current instance, not the class object. http://stackoverflow.com/questions/1562079/how-to-stop-the-execution-of-executor-threadpool-in-java/1562093#1562093 Comment by Outlaw Programmer on How to stop the execution of Executor ThreadPool in java? Outlaw Programmer 2009-10-13T20:27:42Z 2009-10-13T20:27:42Z That seems to be a separate question. You can use something like 'jstack' or 'jconsole' to see which threads are running and what they're waiting for. http://stackoverflow.com/questions/1471900/java-method-argument-puzzle/1471936#1471936 Comment by Outlaw Programmer on Java method argument puzzle Outlaw Programmer 2009-09-24T14:49:43Z 2009-09-24T14:49:43Z The 'final' keyword will keep you from doing something stupid but there's no 'ref' keyword equivalent that will give the &quot;expected&quot; output.