User Eddie - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T01:48:00Z http://stackoverflow.com/feeds/user/57752 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1010371/where-are-mstapi-request-ids-initialized 0 Where are MSTAPI request IDs initialized? Eddie 2009-06-18T01:35:17Z 2009-11-08T08:32:51Z <p>I've inherited some code that implements and talks to the MSTAPI interface. I am curious where the request ID's are initialized (or if they are). By request ID, I mean, for example, the parameter <code>idRequest</code> to the <a href="http://msdn.microsoft.com/en-us/library/ms736570%28VS.85%29.aspx" rel="nofollow">LINE_REPLY Message</a>.</p> <p>The reason I'm curious is that when I have the TSP and the client display request IDs, I see the following as a typical sequence and both sides agree on the numbers:</p> <pre><code>66304 66303 66286 66269 66252 66235 ... </code></pre> <p>The first value translates to <code>0x00010300</code> (which doesn't mean anything to me, but is a round number), and then the request IDs <em>decrease</em> from there. (Unless the request ID is internally being treated as a signed 2-byte integer, which I suppose is possible.)</p> <p>I suspect that one side or the other side is supposed to be initializing something, and isn't or is initializing it to something inappropriate.</p> <p>Does anyone know how the request ID is supposed to work? Is it an opaque number generated internally by MSTAPI and provided to both the TSP and client? Can anyone point at references that explain this?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1400658/how-can-i-list-for-each-windows-tcp-socket-the-status-of-solinger 0 How can I list for each Windows TCP socket the status of SO_LINGER? Eddie 2009-09-09T16:17:58Z 2009-09-09T22:55:38Z <p>I want to verify that a group of sockets do (or do not) have the SO_LINGER option set on them, but the end I care about isn't my program. Basically, my program is getting an unexpected network reset (RST) and I believe it's because the server is setting SO_LINGER and the client isn't pulling the data fast enough.</p> <p>I can find plenty of ways to list the sockets and their endpoints, but I can't find a way to enumerate the sockets on a Windows platform and then get the configuration settings for each end of the socket that is on that server. And obviously, something like SO_TIMEOUT or SO_LINGER cannot be captured in a Wireshark trace.</p> <p>How can I do this? Any solution (C, C++, C#, even VB if necessary) is welcome. Thanks.</p> http://stackoverflow.com/questions/678469/can-a-tomcat-web-app-programmatically-change-the-jsp-servlets-developmenttrue 1 Can a Tomcat web app programmatically change the jsp servlet's "development=true" parameter? Eddie 2009-03-24T17:41:29Z 2009-09-09T16:37:22Z <p>I am referring to the following parameter of Tomcat's <code>web.xml</code> file:</p> <pre><code>&lt;servlet&gt; &lt;servlet-name&gt;jsp&lt;/servlet-name&gt; &lt;servlet-class&gt;org.apache.jasper.servlet.JspServlet&lt;/servlet-class&gt; . . . &lt;init-param&gt; &lt;param-name&gt;development&lt;/param-name&gt; &lt;param-value&gt;true&lt;/param-value&gt; &lt;/init-param&gt; . . . &lt;/servlet&gt; </code></pre> <p>Is there any way for a web application to <strong>programmatically</strong> toggle this value -- at least for itself if not for all web applications -- so this can be temporarily changed on a running web server without having to stop and restart Tomcat?</p> <p>Failing this, is there a way to force a single JSP to recompile without having to wait the few non-deterministic minutes it may take otherwise? I know that if you change a JSP, it will eventually (within a few minutes) be compiled, but I'm looking for a way to say, "On the next access, recompile it."</p> <p>NOTE: Solutions which require restarting the web application or which will result in a web app restart or a container restart won't help me. I already know how to do this (by hand) for times when I can restart Tomcat. What I am trying to do is to temporarily switch the "development" value from false to true on a Tomcat instance in production, where I cannot interrupt current sessions.</p> http://stackoverflow.com/questions/655746/is-there-a-jdk-class-to-do-html-encoding-but-not-url-encoding 0 Is there a JDK class to do HTML encoding (but not URL encoding)? Eddie 2009-03-17T19:50:47Z 2009-09-09T16:27:54Z <p>I am of course familiar with the <code>java.net.URLEncoder</code> and <code>java.net.URLDecoder</code> classes. However, I only need HTML-style encoding. (I don't want <code>' '</code> replaced with <code>'+'</code>, etc). I am not aware of any JDK built in class that will do just HTML encoding. Is there one? I am aware of other choices (for example, <a href="http://commons.apache.org/lang/api-release/org/apache/commons/lang/StringEscapeUtils.html" rel="nofollow">Jakarta Commons Lang <code>StringEscapeUtils</code></a>, but I don't want to add another external dependency to the project where I need this.</p> <p>I'm hoping that something has been added to a recent JDK (aka 5 or 6) that will do this that I don't know about. Otherwise I have to roll my own.</p> http://stackoverflow.com/questions/655746/is-there-a-jdk-class-to-do-html-encoding-but-not-url-encoding/1400705#1400705 0 Answer by Eddie for Is there a JDK class to do HTML encoding (but not URL encoding)? Eddie 2009-09-09T16:27:54Z 2009-09-09T16:27:54Z <p>Apparently, the answer is, "No." This was unfortunately a case where I had to do something and <strong>couldn't</strong> add a new external dependency for it -- in the short term. I agree with everyone that using Commons Lang is the best long-term solution. This is what I will go with once I can add a new library to the project.</p> <p>It's a shame that something of such common use is not in the Java API.</p> http://stackoverflow.com/questions/481808/how-can-i-provide-a-custom-log4j-xml-for-different-ant-tasks 2 How can I provide a custom log4j.xml for different ant tasks? Eddie 2009-01-26T23:23:19Z 2009-08-10T20:32:50Z <p>I have a build file that as part of the build process relies on several taskdefs. These taskdef items (for example, webdoclet and jasper2) use log4j as a logger. Ideally, I'd like to be able to provide a different log4j configuration file for each, but minimally, I'd like to be able to specify which log4j configuration file is used.</p> <p>What I did that used to work was to put at the front of the classpath the directory containing the log4j.xml that I wanted the taskdef to use. For example:</p> <pre> &lt;target name="define.jasper2"> &lt;path id="jspc.classpath"> &lt;!-- Put this FIRST so Jasper will find the log4j.xml in the Build directory --> &lt;pathelement location="Build"/> &lt;fileset dir="${tomcat.libs}"> .... &lt;/fileset> &lt;pathelement location="${log4j.jar}"/> .... &lt;/path> &lt;taskdef name="jasper2" classname="org.apache.jasper.JspC" classpathref="jspc.classpath"/> &lt;/target> </pre> <p>I've verified that, in fact, the "Build" directory is at the front of the classpath and that a log4j.xml exists in that directory. However, when I run ant in verbose mode with log4j in debug, I see that log4j is choosing the log4j.xml that is in the <em>current working directory</em>, which is not the one I want. Log4j appears to not be using the classpath to resolve the default log4j.xml.</p> <p>I'm using log4j 1.2.8 (embedded within a larger framework, so I cannot upgrade it) and some of these taskdefs appear to rely on commons-logging 1.0.3. The build process uses Sun Java 5.</p> <p>If I <code>set ANT_OPTS=-Dlog4j.configuration=Build/log4j.xml</code> before running ant, the taskdefs correctly load the desired log4j.xml.</p> <p>Putting the "Build" directory at the front of the classpath for the taskdefs used to work. I don't know what changed. How can I restore the behavior where I can control -- within the build.xml -- which log4j configuration file is used for a given task? Is there a way other than setting ANT_OPTS and other than rearranging files to move the application's log4j.xml out of the current working directory to get log4j to find the correct log4j.xml file?</p> http://stackoverflow.com/questions/904582/java-foreach-efficiency/904588#904588 14 Answer by Eddie for Java foreach efficiency Eddie 2009-05-24T20:34:17Z 2009-07-30T20:24:52Z <p>If you want to be absolutely certain, then compile it both ways and decompile it and compare. I did this with the following source:</p> <pre><code>public void test() { Map&lt;String, String&gt; myMap = new HashMap&lt;String, String&gt;(); for (String key : myMap.keySet()) { System.out.println(key); System.out.println(myMap.get(key)); } Set&lt;String&gt; keySet = myMap.keySet(); for (String key : keySet) { System.out.println(key); System.out.println(myMap.get(key)); } } </code></pre> <p>and when I decompiled the class file with <a href="http://www.varaneckas.com/jad" rel="nofollow">Jad</a>, I get:</p> <pre><code>public void test() { Map myMap = new HashMap(); String key; for(Iterator iterator = myMap.keySet().iterator(); iterator.hasNext(); System.out.println((String)myMap.get(key))) { key = (String)iterator.next(); System.out.println(key); } Set keySet = myMap.keySet(); String key; for(Iterator iterator1 = keySet.iterator(); iterator1.hasNext(); System.out.println((String)myMap.get(key))) { key = (String)iterator1.next(); System.out.println(key); } } </code></pre> <p>So there's your answer. It is called once with either for-loop form.</p> http://stackoverflow.com/questions/1161228/tostring-in-java/1168724#1168724 1 Answer by Eddie for toString() in Java Eddie 2009-07-22T22:49:42Z 2009-07-22T22:49:42Z <p>If there is a problem with the existing <code>toString()</code> implementations, the developer should fix the problem. Saying the current implementations are all "pure cruft" and removing them is actively doing harm, unless the existing <code>toString()</code> methods are <strong>uncommonly</strong> poorly written.</p> <p>I would <em>strongly</em> discourage the developer from removing any functioning <code>toString()</code> method.</p> http://stackoverflow.com/questions/1101653/how-can-a-vista-toolbar-ignore-or-figure-out-the-border-padding-setting 1 How can a Vista toolbar ignore or figure out the border padding setting? Eddie 2009-07-09T03:06:49Z 2009-07-11T00:35:51Z <p>I have a toolbar developed under older versions of Windows that is largely cut off under Vista due to the window new border padding. With the default border padding of 4, the everything on the toolbar is shoved four pixels down and to the right, and then everything is cropped four pixels from the bottom and right sides. I don't really care about the horizontal dimension as much, but vertically this means the application loses eight pixels of visible content.</p> <p>By "toolbar" I mean a window created similar to the following:</p> <pre><code>APPBARDATA AppBarData; AppBarData.hWnd = CreateWindowEx(WS_EX_TOOLWINDOW | WS_EX_TOPMOST, MAIN_WNDCLASS, "", WS_POPUP | WS_THICKFRAME | WS_CLIPCHILDREN, 0, 0, 400, TOOLBAR_HEIGHT, NULL, NULL, AppInstance, NULL); // more initialization .... SHAppBarMessage(ABM_NEW, &amp;AppBarData); </code></pre> <p>Since border padding is a configuration item seemingly new to Vista, how can an application that runs in both XP and Vista handle this? My questions are:</p> <ol> <li>Is it possible for a toolbar to tell Vista "Ignore the 'border padding' setting; my border padding is 0"?</li> <li>If not, how does an application figure out what the border padding is set to so it can make its window taller by twice that amount?</li> <li>For both questions, how do you do this in a way that allows the same executable to operate under XP, Vista, Win2003, and so on?</li> </ol> http://stackoverflow.com/questions/1107139/java-type-erasure-problem/1107156#1107156 2 Answer by Eddie for Java Type Erasure Problem Eddie 2009-07-10T00:38:16Z 2009-07-10T00:38:16Z <p>Sorry, the bad news is that you cannot do this:</p> <pre><code>public class Algorithm&lt;T extends Metrical&lt;T&gt;&gt; { public void compute(Set&lt;T&gt; objects) { } public void compute(Set&lt;Pair&lt;T&gt;&gt; pairs) { } } </code></pre> <p>Due to erasure, both will erase to the same signature. There is no way around this short of renaming one of the methods.</p> http://stackoverflow.com/questions/1101653/how-can-a-vista-toolbar-ignore-or-figure-out-the-border-padding-setting/1107141#1107141 0 Answer by Eddie for How can a Vista toolbar ignore or figure out the border padding setting? Eddie 2009-07-10T00:34:42Z 2009-07-10T00:34:42Z <p>Well, I figured it out, sort if. In my case, the cause of the problem was use of <code>WS_THICKFRAME</code> when calling <code>CreateWindowEx()</code>, which I didn't need. This setting was used, previously, to center everything vertically in the toolbar. I guess under WinXP (classic view) and earlier, a <code>WS_THICKFRAME</code> predictably added 3 pixels of padding on all sizes.</p> <p>Thus, I removed that option and changed the code to move everything three pixels down and to the right. Now the toolbar looks identical under WinXP and Vista and I don't have the annoying and unnecessary (for this toolbar) extra padding.</p> <p>This doesn't solve the general case, but since my answer may help others who run into this, I thought I'd post my solution. I hope this helps someone else.</p> http://stackoverflow.com/questions/607809/how-do-i-change-an-exe-or-dll-version-number-from-the-command-line 2 How do I change an EXE or DLL version number from the command line? Eddie 2009-03-03T19:36:37Z 2009-07-10T00:10:47Z <p>I need to build an old VB6 application with a version number where the 4th digit is greater than 9999, for example, version <code>1.2.0.10003</code>. VB6 won't let you do this; the build fails. </p> <p>The current workaround is to build version <code>1.2.0.9999</code> and then manually edit the file in Visual Studio to insert the correct version. There must be a better way. Is there a command-line tool that allows you to modify the version number fields of an EXE or DLL? Preferably a way that allows you to edit specific version number fields individually.</p> http://stackoverflow.com/questions/787415/what-can-cause-tcp-ip-to-drop-packets-without-dropping-the-connection 3 What can cause TCP/IP to drop packets without dropping the connection? Eddie 2009-04-24T20:16:17Z 2009-06-23T04:54:22Z <p>I have a web-based application and a client, both written in Java. For what it's worth, the client and server are both on Windows. The client issues HTTP GETs via <a href="http://hc.apache.org/httpclient-3.x/" rel="nofollow">Apache HttpClient</a>. The server blocks for up to a minute and if no messages have arrived for the client within that minute, the server returns HTTP 204 No Content. Otherwise, as soon as a message is ready for the client, it is returned with the body of an HTTP 200 OK.</p> <p><strong>Here is what has me puzzled:</strong> Intermittently for a specific subset of clients -- always clients with demonstrably flaky network connections -- the client issues a GET, the server receives and processes the GET, but the client sits forever. Enabling debugging logs for the client, I see that HttpClient is still waiting for the very first line of the response.</p> <p>There is no Exception thrown on the server, at least nothing logged anywhere, not by Tomcat, not by my webapp. According to debugging logs, there is every sign that the server successfully responded to the client. However, the client shows no sign of having received anything. The client hangs indefinitely in <a href="http://hc.apache.org/httpclient-3.x/apidocs/org/apache/commons/httpclient/HttpClient.html#executeMethod%28org.apache.commons.httpclient.HttpMethod%29" rel="nofollow">HttpClient.executeMethod</a>. This becomes obvious after the session times out and the client takes action that causes another Thread to issue an HTTP POST. Of course, the POST fails because the session has expired. In some cases, <em>hours</em> have elapsed between the session expiring and the client issuing a POST and discovering this fact. For this entire time, <code>executeMethod</code> is still waiting for the HTTP response line.</p> <p>When I use WireShark to see what is really going on at the wire level, this failure does not occur. That is, this failure will occur within a few hours for specific clients, but when WireShark is running at both ends, these same clients will run overnight, 14 hours, without a failure.</p> <p>Has anyone else encountered something like this? What in the world can cause it? I thought that TCP/IP guaranteed packet delivery even across short term network glitches. If I set an SO_TIMEOUT and immediately retry the request upon timeout, the retry always succeeds. (Of course, I first <a href="http://hc.apache.org/httpclient-3.x/apidocs/org/apache/commons/httpclient/HttpMethod.html#abort%28%29" rel="nofollow">abort</a> the timed-out request and release the connection to ensure that a new socket will be used.)</p> <p>Thoughts? Ideas? Is there some TCP/IP setting available to Java or a registry setting in Windows that will enable more aggressive TCP/IP retries on lost packets?</p> http://stackoverflow.com/questions/1020734/revisitedstack-overflow-in-fortran-program/1020773#1020773 0 Answer by Eddie for Revisited:Stack Overflow in Fortran program Eddie 2009-06-20T02:22:25Z 2009-06-20T03:10:43Z <p>Assuming the exception is happening on the line you mention, then your program's stack is insufficently large for the variables being allocated on it. You need to find the flag in your compiler to increase the default stack allocation on your program. Or, if you are not using recursion at all, you can make those variables global variables so they are not allocated on the stack.</p> <p>Note the size you're allocating:</p> <pre><code>PARAMETER(NGMAX=30000) DIMENSION KO(NGMAX) DIMENSION XLS(NGMAX,100),XLE(NGMAX,100),YLS(NGMAX,100),YLE(NGMAX,100) DIMENSION IZ(NX,NY),VX(NX-1,NY-1),VY(NX-1,NY-1),VZ(NX-1,NY-1) </code></pre> <p>You're allocating space for 30000 * 100 values (<code>real</code>s, I assume) for each of the four arrays <code>XLS</code>, <code>XLE</code>, <code>YLS</code>, and <code>YLE</code>. That's 12,000,000 values. Assuming 32-bit values, it's 48 Meg of memory. But I vaguely recall that on some platforms, reals are 80 bits? In that case it would be 120 Meg of memory.</p> <p>Do you <em>really</em> need your arrays to be 30,000 elements long in one dimension? If not, reducing that allocation may help you.</p> <p>Look at the compiler options for the FORTRAN compiler you're using. I remember that the VAX/VMS FORTRAN compiler had a command-line option to make <em>all</em> variables static, which is to say not allocated on the stack. Assuming you can guarantee that you will not do any recursion, this may be the quickest solution to your problem.</p> <p>Another option you have is putting all of the large arrays into a COMMON block, but note that arrays in a common block cannot be dynamically sized.</p> http://stackoverflow.com/questions/1020653/how-can-you-do-anything-useful-without-mutable-state/1020793#1020793 1 Answer by Eddie for How can you do anything useful without mutable state? Eddie 2009-06-20T02:37:21Z 2009-06-20T02:42:55Z <p>In addition to the great answers others are giving, think about the classes <code>Integer</code> and <code>String</code> in Java. Instances of these classes are immutable, but that doesn't make the classes useless just because their instances cannot be changed. The immutability gives you some safety. You know if you use a String or Integer instance as the key to a <code>Map</code>, the key cannot be changed. Compare this to the <code>Date</code> class in Java:</p> <pre><code>Date date = new Date(); mymap.put(date, date.toString()); // Some time later: date.setTime(new Date().getTime()); </code></pre> <p>You have silently changed a key in your map! Working with immutable objects, such as in Functional Programming, is a lot cleaner. It's easier to reason about what side effects occur -- none! This means it's easier for the programmer, and also easier for the optimizer.</p> http://stackoverflow.com/questions/1020751/java-synchronization-not-working-as-i-expected/1020761#1020761 4 Answer by Eddie for Java synchronization not working as (I) expected Eddie 2009-06-20T02:14:11Z 2009-06-20T02:19:18Z <p>You do the following:</p> <pre><code>c2.start(); // Start a thread in the background c1.start(); // Start a 2nd thread in the background // print out the balance while both threads are still running System.out.println(account.getBalance()); </code></pre> <p>You need to wait for these threads to complete their processing:</p> <pre><code>c2.start(); // Start a thread in the background c1.start(); // Start a 2nd thread in the background try { c2.join(); // Wait until the c2 thread completes c1.join(); // Wait until the c1 thread completes } catch (InterruptedException e) { // LOG AN ERROR HERE } // print out the final balance System.out.println(account.getBalance()); </code></pre> <p>If you interrupt your main Thread then you'll need to <em>do</em> something with an interrupted exception. Assuming that none of your code does this, you should always, at a minimum, log the Exception. NOTE: You'll get the <code>InterruptedException</code> <em>not</em> if someone interrupts <code>c1</code> or <code>c2</code>, but if someone interrupts your main thread, the thread that calls <code>join()</code>. If someone has called <code>interrupt()</code> on your main thread but you don't check for it, then you'll probably get the <code>InterruptedException</code> the moment you call <code>join()</code>.</p> http://stackoverflow.com/questions/1015065/java-application-consumed-100-cpu-usage/1016275#1016275 0 Answer by Eddie for Java Application consumed 100% CPU usage Eddie 2009-06-19T03:52:28Z 2009-06-19T03:52:28Z <p>A stack dump gives no information about what thread was using CPU. You really need to give us more information (such as a simplified program that causes the same problem). A stack dump shows a snapshot of a moment in time -- where each thread in Eclipse was, including your application running within Eclipse. Unless a thread had a very deep stack (indicating runaway recursion) -- which isn't the case here -- a single stack dump gives no information about CPU usage.</p> <p>Also, this is an Eclipse stack dump. Your application may or may not have been running within the Eclipse JVM. More likely, it was running in a separate JVM. If you try this again, look at a process list to see if you have one or two Java processes running. If you have two, you need to look at the 2nd one.</p> http://stackoverflow.com/questions/1015944/how-does-an-array-of-pointers-to-pointers-work/1015970#1015970 19 Answer by Eddie for How does an array of pointers to pointers work? Eddie 2009-06-19T01:18:30Z 2009-06-19T02:21:26Z <p>This structure</p> <pre><code>char **Data[70]={NULL}; </code></pre> <p>is an array of 70 pointers to pointers to char. The compiler allocates <code>70 * sizeof(char**)</code> bytes for this array, which assuming 32-bit pointers is 280 bytes.</p> <p>If you internally think of a "pointer to char" as a string, which isn't true but it's close enough, then this is an array of 70 pointers to pointers to strings. To make some ASCII art and pretend that you have allocated and filled some values....</p> <pre><code> Array of One or more char ** char * +---------+ +---------+ | 0 | --&gt; | ptr | --&gt; "Hello, world" +---------+ +---------+ | 1 | +---------+ +---------+ | 2 | ----&gt; | ptr2 | --&gt; "Goodbye, cruel world" +---------+ +---------+ | 3 | +---------+ +---------+ | 4 | ------&gt; | ptr3[0] | --&gt; "Message 0" +---------+ +---------+ ... | ptr3[1] | --&gt; "Message 1" +---------+ +---------+ | 69 | | ptr3[2] | --&gt; "Message 2" +---------+ +---------+ </code></pre> <p>You could do the above with code like this (error checking malloc return values skipped):</p> <pre><code>char **Data[70]={NULL}; char **ptr, **ptr2, **ptr3; ptr = (char **) malloc(sizeof(char *)); *ptr = "Hello, world"; Data[0] = ptr; ptr2 = (char **) malloc(sizeof(char *)); *ptr2 = "Goodbye, cruel world"; Data[2] = ptr2; ptr3 = (char **) malloc(10 * sizeof(char *)); Data[4] = ptr3; ptr3[0] = "Message 0"; ptr3[1] = "Message 1"; ... ptr3[9] = "Message 9"; printf("%s\n", *Data[0]); printf("%s\n", Data[2][0]); printf("%s\n", Data[4][0]); printf("%s\n", Data[4][1]); ... printf("%s\n", Data[4][9]); </code></pre> <p>Think of it this way: Each entry in the array is a <code>char **</code>. Each entry can point to an arbitrary location in memory, said location(s) being <code>char *</code> and thus being able to point to a null-terminated character array aka "string."</p> <p>Note carefully the distinction between this and what you get when you allocate a 2D array:</p> <pre><code>char *Data2[10][70]={NULL}; </code></pre> <p>The allocation of <code>Data2</code> above gives you a 2-dimensional array of <code>char *</code> pointers, said 2-d array being allocated in a single chunk of memory (<code>10 * 70 * sizeof(char*)</code> bytes, or 2800 bytes with 32-bit pointers). You don't have the ability to assign the <code>char **</code> pointers to arbitrary locations in memory that you have with the single-dimensional array of <code>char **</code> pointers.</p> <p>Also note (given above declarations of <code>Data</code> and <code>Data2</code>) that the compiler will generate different code for the following array references:</p> <pre><code>Data[0][0] Data2[0][0] </code></pre> <p><strong>Here's another way to think about this</strong>: Imagine that you have several arrays of pointers to strings:</p> <pre><code>char *table0[] = { "Tree", "Bench", "Stream" }; char *table1[] = { "Cow", "Dog", "Cat" }; char *table2[] = { "Banana", "Carrot", "Broccoli" }; char **Data[3]; Data[0] = table0; Data[1] = table1; Data[2] = table2; </code></pre> <p>You have an array of pointers to "array of pointer to char". If you now print the value of <code>data[1][1]</code>, think of it like this: <code>data[1]</code> gets you a pointer to the array <code>table1</code>. Then the value <code>table1[1]</code> equals <code>"Dog"</code>.</p> http://stackoverflow.com/questions/1010535/stackoverflowexception-with-large-lists/1010556#1010556 3 Answer by Eddie for StackOverflowException with large lists Eddie 2009-06-18T02:58:28Z 2009-06-18T02:58:28Z <p>The stack overflow must not be in the code you're showing us, as there is no recursion there. Look for where your code does recursion. Better yet, what's the stack trace you get when you get your StackOverflowException? That will tell you where in your recursion that your code is going into an infinite recursive loop.</p> <p>A plain old infinite loop will not cause StackOverflowException. For that to occur, you need to have recursion that doesn't end, until your stack is exhausted.</p> http://stackoverflow.com/questions/1004764/why-is-this-cron-entry-executed-twice/1004803#1004803 0 Answer by Eddie for Why is this cron entry executed twice? Eddie 2009-06-17T02:28:38Z 2009-06-17T02:28:38Z <p>For sure it's not the crontab entry that's causing it to run twice. The fastest way to find out what is going on is to add some debugging to the cron job script. If you do nothing, then by default the cron output will be mailed to <code>root@localhost</code> (unless you have configured this to be different), so assuming you have root access, add some debugging information to the script, such as:</p> <pre><code>echo "Script starting" date whoami </code></pre> <p>and look at the output. This will get you started as to figuring out how this is getting called twice.</p> http://stackoverflow.com/questions/999172/how-to-parse-date-in-java/999188#999188 3 Answer by Eddie for how to parse date in java? Eddie 2009-06-16T01:08:16Z 2009-06-16T01:13:36Z <p>The problem is that you have a date formatted like this:</p> <pre><code>Thu Jun 18 20:56:02 EDT 2009 </code></pre> <p>but are using a <code>SimpleDateFormat</code> that is </p> <pre><code>yyyy-MM-dd </code></pre> <p>The two formats don't agree. You need to construct a <a href="http://java.sun.com/javase/6/docs/api/java/text/SimpleDateFormat.html" rel="nofollow"><code>SimpleDateFormat</code></a> that matches the layout of the string you're trying to parse into a Date. Lining things up to make it easy to see, you want a <code>SimpleDateFormat</code> like this:</p> <pre><code>EEE MMM dd HH:mm:ss zzz yyyy Thu Jun 18 20:56:02 EDT 2009 </code></pre> <p>Check the JavaDoc page I linked to and see how the characters are used.</p> http://stackoverflow.com/questions/998572/is-this-regular-expression-interview-question-a-fair-question-for-a-senior-progra/998611#998611 2 Answer by Eddie for Is this regular expression interview question a fair question for a Senior Programmer position? Eddie 2009-06-15T21:56:38Z 2009-06-15T21:56:38Z <p>I'm the person that many come to for help with regular expressions, and in many years of doing this, I've so far never <em>had</em> to use look-ahead. So unless a reference is provided, this is a trick question that won't tell you much about the programmer's skills. Also, this is highly specific to whichever language regex uses this specific syntax for lookaheads.</p> http://stackoverflow.com/questions/994312/about-a-difference-of-and-of-include-c/994350#994350 0 Answer by Eddie for About a difference of "" and <> of include: C Eddie 2009-06-15T02:51:44Z 2009-06-15T16:14:06Z <p>For <code>#include "..."</code>, the compiler expects to find the include file in (or relative to) the current directory. The compiler will expect to find the file in (or relative to) the current directory. If you do <code>#include "../../includes/myprogram.h"</code> then the compiler will expect to find the include file two directories up then down into <code>includes</code> relative to the directory containing the C or C++ source file. If you do <code>#include "myprogram.h"</code> then the compiler will expect to find the include file in the same file as the C or C++ source file.</p> <p>For <code>#include &lt;...&gt;</code>, the file will be searched for from a combination of the standard system include directories and any directories you have added to the include search path on the command line or in Visual Studio by modifying the "include path." In Linux, for example, if you say <code>#include &lt;sys/quota.h&gt;</code> then the compiler will start by looking in the standard system include directory <code>/usr/include</code> (or any directories you have added to the include path using <code>-I...</code> on the command line) and will in fact find <code>/usr/include/sys/quota.h</code>.</p> http://stackoverflow.com/questions/994319/how-to-escape-character-in-el-with-jstl-tag/994355#994355 1 Answer by Eddie for How to Escape Character in EL with JSTL tag? Eddie 2009-06-15T02:58:04Z 2009-06-15T02:58:04Z <p>You have two easy choices:</p> <pre><code>&lt;c:when test="${var1.properties['Item Type'] eq 'Animal\'s Part'}"&gt; &lt;c:when test='${var1.properties["Item Type"] eq "Animal\'s Part"}'&gt; </code></pre> http://stackoverflow.com/questions/993039/java-synchronisation-do-i-need-it-for-this-simple-method/993085#993085 1 Answer by Eddie for Java Synchronisation - Do I need it for this simple method? Eddie 2009-06-14T15:54:48Z 2009-06-14T16:09:34Z <p>You absolutely need synchronization, because you can have two threads decide that <code>f.id</code> is not in the map, construct and then add one. Each thread will be returned a difference instance for <code>f.id</code>, even though the map will only contain the one that finished last.</p> <p>At issue isn't the variable <code>bitmap</code>. That is thread-safe as it's local to a single thread. However, access to `fullMap -- which I assume is a field of the class -- needs to be synchronized due to the fact that you're doing a "put-if-absent".</p> <p>Assuming the cost of constructing a bitmap is expensive, the best way to do this is just to synchronize the method <code>getFullBitmap()</code>. If it was very cheap to construct -- cheaper than synchronization -- then I would suggest always constructing the new object and doing <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ConcurrentMap.html#putIfAbsent%28K,%20V%29" rel="nofollow"><code>putIfAbsent</code></a> on a <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ConcurrentMap.html" rel="nofollow"><code>ConcurrentMap</code></a>. But when the object is expensive to construct, this is a bad idea.</p> http://stackoverflow.com/questions/993053/ugly-user-interfaces/993108#993108 2 Answer by Eddie for Ugly user interfaces Eddie 2009-06-14T16:06:04Z 2009-06-14T16:06:04Z <p>Make sure that:</p> <ul> <li>TAB and SHIFT-TAB do what the user will expect</li> <li>Related fields are grouped together</li> <li>You let the user enter data in their preferred format (if they want to enter a phone number using "-" and "()" for example, let them), then convert the data into your internal preferred format</li> <li>Make good use of fonts, colors, dividers, and so on, so each group of fields to be entered are locally uncluttered.</li> </ul> <p>Think of remote controls. Some remote controls are a collection of undifferentiated buttons, all the same shape and size and color. Some remote controls have clearly divided groups of buttons, using button size, shape, color, and so on, to make it obvious at a glance where the buttons are for each purpose.</p> <p>You can have two remote controls that each provide equivalent functionality, yet one looks cluttered and the other doesn't. A cluttered look is about more than just how many fields there are.</p> http://stackoverflow.com/questions/985076/exception-while-read-very-large-file-300-mb/985110#985110 0 Answer by Eddie for exception while Read very large file > 300 MB Eddie 2009-06-12T05:10:25Z 2009-06-13T03:43:39Z <p>You definitely do NOT want to load a 300MB file into a single large buffer with Java. The way you're doing things is supposed to be more efficient for large files than just using normal I/O, but when you run a <code>Matcher</code> against an entire file mapped into memory as you are, you can very easily exhaust memory.</p> <p>First, your code memory maps the file into memory ... this will consume 300 Meg of memory in your virtual address space as the file is <code>mmap</code>ed into it, although this is outside the heap. (Note that the 300 Meg of virtual address space is tied up <em>until the <code>MappedByteBuffer</code> is garbage collected</em>. See below for discussion. The JavaDoc for <a href="http://java.sun.com/javase/6/docs/api/java/nio/channels/FileChannel.html#map%28java.nio.channels.FileChannel.MapMode,%20long,%20long%29" rel="nofollow"><code>map</code></a> warns you about this.) Next, you create a <code>ByteBuffer</code> backed by this <code>mmap</code>ed file. This should be fine, as it's just a "view" of the <code>mmap</code>ed file and should thus take minimal extra memory. It will be a small object in the heap with a "pointer" to a large object outside the heap. Next, you decode this into a <code>CharBuffer</code>, which means you make a <strong>copy</strong> of the 300 MB buffer, but you make a 600 MB copy (on the heap) because a <code>char</code> is 2 bytes.</p> <p>To respond to a comment, and looking at the JDK Source code to be sure, when you call <code>map()</code> as the OP is, you do in fact map the <em>entire</em> file into memory. Looking at openJDK 6 b14 Windows native code <code>sun.nio.ch.FileChannelImpl.c</code>, it first calls <a href="http://msdn.microsoft.com/en-us/library/aa366537%28VS.85%29.aspx" rel="nofollow"><code>CreateFileMapping</code></a>, then calls <a href="http://msdn.microsoft.com/en-us/library/aa366761%28VS.85%29.aspx" rel="nofollow"><code>MapViewOfFile</code></a>. Looking at this source, if you ask to map the whole file into memory, this method will do exactly as you ask. To quote MSDN:</p> <blockquote> <p>Mapping a file makes the specified portion of a file visible in the address space of the calling process.</p> <p>For files that are larger than the address space, you can only map a small portion of the file data at one time. When the first view is complete, you can unmap it and map a new view.</p> </blockquote> <p>The way the OP is calling map, the "specified portion" of the file is the entire file. This won't contribute to <em>heap</em> exhaustion, but it can contribute to virtual address space exhaustion, which is still an OOM error. This can kill your application just as thoroughly as running out of heap.</p> <p>Finally, when you make a <code>Matcher</code>, the <code>Matcher</code> potentially makes more copies of this 600 MB <code>CharBuffer</code>, depending on how you use it. Ouch. That's a lot of memory used by a small number of objects! Given a <code>Matcher</code>, <strong>every time</strong> you call <code>toMatchResult()</code>, you'll make a <code>String</code> copy of the <strong>entire</strong> <code>CharBuffer</code>. Also, <strong>every time</strong> you call <code>replaceAll()</code>, at best you will make a <code>String</code> copy of the entire <code>CharBuffer</code>. At worst you will make a <code>StringBuffer</code> that will slowly be expanded to the full size of the <code>replaceAll</code> result (applying a lot of memory pressure on the heap), and then make a <code>String</code> from that.</p> <p>Thus, if you call <code>replaceAll</code> on a <code>Matcher</code> against a 300 MB file, and your match is found, then you'll first make a series of ever-larger <code>StringBuffer</code>s until you get one that is 600 MB. Then you'll make a <code>String</code> copy of this <code>StringBuffer</code>. This can quickly and easily lead to heap exhaustion.</p> <p>Here's the bottom line: <code>Matcher</code>s are not optimized for working on very large buffers. You can very easily, and without planning to, make a number of very large objects. I discovered this when doing something similar enough to what you're doing and encountering memory exhaustion, then looking at the source code for <code>Matcher</code>.</p> <p>NOTE: There is no <code>unmap</code> call. Once you call <a href="http://java.sun.com/javase/6/docs/api/java/nio/channels/FileChannel.html#map%28java.nio.channels.FileChannel.MapMode,%20long,%20long%29" rel="nofollow"><code>map</code></a>, the virtual address space outside the heap tied up by the <code>MappedByteBuffer</code> is stuck there until the <code>MappedByteBuffer</code> is garbage collected. As a result, you will be unable to perform certain operations on the file (delete, rename, ...) until the <code>MappedByteBuffer</code> is garbage collected. If call map enough times on different files, but don't have sufficient memory pressure in the heap to force a garbage collection, you can out of memory outside the heap. For a discussion, see <a href="http://bugs.sun.com/bugdatabase/view%5Fbug.do?bug%5Fid=4724038" rel="nofollow">Bug 4724038</a>.</p> <p>As a result of all of the discussion above, if you will be using it to make a <code>Matcher</code> on large files, and you will be using <code>replaceAll</code> on the <code>Matcher</code>, then memory mapped I/O is probably not the way to go. It will simply create too many large objects on the heap as well as using up a lot of your virtual address space outside the heap. Under 32 bit Windows, you have only 2GB (or if you have changed settings, 3GB) of virtual address space for the JVM, and this will apply significant memory pressure both inside and outside the heap.</p> <p>I apologize for the length of this answer, but I wanted to be thorough. If you think any part of the above is wrong, please comment and say so. I <strong>will not</strong> do retaliatory downvotes. I am <em>very</em> positive that all of the above is accurate, but if something is wrong, I want to know.</p> http://stackoverflow.com/questions/989546/will-optimizing-code-become-unnecessary/989571#989571 0 Answer by Eddie for Will optimizing code become unnecessary? Eddie 2009-06-13T00:06:22Z 2009-06-13T00:06:22Z <p>Given that computers are about a thousand times faster than they were a few decades ago, but don't generally appear much faster, I'd say that we have a LONG way to go before we stop worrying about optimization. The problem is that as computers become more powerful, we have the computers do more and more work for us so that we can work at higher levels of abstraction. Optimization at each level of abstraction remains important.</p> <p>Yes, computers do many things a lot faster: You can draw a Mandelbrot in minutes that used to require days of computer time. A GIF loads near-instantaneously, rather than taking visible seconds to be drawn on the screen. Many things are faster. But browsing, for example, is not that much faster. Word processing is not that much faster. As computers get more powerful, we just expect more, and we make computers <em>do</em> more.</p> <p>Optimization will be important for the forseeable future. However, <em>micro-optimizations</em> are far less important than they used to be. The most important optimization these days may be choice of algorithm. Do you choose O(n log n) or O(n^2) .... etc.</p> http://stackoverflow.com/questions/987679/is-synchronization-necessary-for-unmodifiable-maps/987725#987725 5 Answer by Eddie for Is synchronization necessary for unmodifiable maps? Eddie 2009-06-12T16:41:58Z 2009-06-12T16:53:11Z <p>You <strong>should</strong> use the <code>volatile</code> keyword, to ensure that Threads will see the most recent <code>Map</code> version. Otherwise, without synchronization, there is no <em>guarantee</em> that other threads will ever see anything except the empty map.</p> <p>Since your <code>updateMap()</code> is synchronized, each access to it will see the latest value for <code>map</code>. Thus, you won't lose any updates. This is guaranteed. However, since your <code>getMap()</code> is not synchronized and <code>map</code> is not <code>volatile</code>, there is no guarantee that a thread will see the latest value for <code>map</code> unless that thread itself was the most recent thread to update the map. Use of <code>volatile</code> will fix this.</p> <p>However, you <strong>do</strong> have access to the Java 1.5 and 1.6 concurrency additions. A <a href="http://backport-jsr166.sourceforge.net/" rel="nofollow">backport</a> exists. I highly recommend use of the backport, as it will allow easy migration to the JDK concurrency classes when you are able to migrate to a later JDK, and it allows higher performance than your method does. (Although if updates to your <code>map</code> are rare, your performance should be OK.)</p> http://stackoverflow.com/questions/985151/how-to-present-the-nullable-primitive-type-int-in-java/985162#985162 0 Answer by Eddie for How to present the nullable primitive type int in Java? Eddie 2009-06-12T05:32:01Z 2009-06-12T05:32:01Z <p>Another option is to have a <code>boolean</code> flag that indicates whether or not your year value is valid. This flag being <code>false</code> would mean the year is "unknown."</p> http://stackoverflow.com/questions/668268/can-i-use-resources-licenced-under-the-apache-public-license-in-my-commercial-app/668498#668498 Comment by Eddie on Can I use resources licenced under the Apache Public License in my commercial app? Eddie 2009-09-11T21:32:50Z 2009-09-11T21:32:50Z This was worth a -1? There's no way that &quot;lot of countries don't have lawyers who have any knowledge of software license law.&quot; Maybe there aren't MANY, but only countries without law would have <i>NO</i> lawyers versed in the law. As to whether or not my answer is practical -- that may depend on circumstances and where you are located. But a company that cannot afford a lawyer has much bigger problems than intellectual property law. In any case, no legal answer on SO is going to be or can be authoritative. This is the wrong place to look for anything other than very general advice about the law. http://stackoverflow.com/questions/1101653/how-can-a-vista-toolbar-ignore-or-figure-out-the-border-padding-setting/1101667#1101667 Comment by Eddie on How can a Vista toolbar ignore or figure out the border padding setting? Eddie 2009-07-11T00:32:50Z 2009-07-11T00:32:50Z +1. Removing WS_THICKFRAME solved it for me. http://stackoverflow.com/questions/1101653/how-can-a-vista-toolbar-ignore-or-figure-out-the-border-padding-setting/1107141#1107141 Comment by Eddie on How can a Vista toolbar ignore or figure out the border padding setting? Eddie 2009-07-10T23:29:00Z 2009-07-10T23:29:00Z The negative points are not from me. I have not yet voted on any of these answers. People downvote for all sorts of silly and surprising reasons. You unfortunately have to get used to it on StackOverflow and related sites. http://stackoverflow.com/questions/1101653/how-can-a-vista-toolbar-ignore-or-figure-out-the-border-padding-setting/1101699#1101699 Comment by Eddie on How can a Vista toolbar ignore or figure out the border padding setting? Eddie 2009-07-09T21:03:33Z 2009-07-09T21:03:33Z I figured out from those links that if I compile with the subsystem minimum version 6.0, then the application can get the border size successfully. This would allow it to compensate for the border. However, the application then will not run under anything earlier than Vista, which isn't acceptable. There must be a way to solve this, but I cannot find it. http://stackoverflow.com/questions/539436/cast-interface-to-its-concrete-implementation-object-or-vice-versa/539523#539523 Comment by Eddie on Cast interface to its concrete implementation object or vice versa? Eddie 2009-06-30T21:51:40Z 2009-06-30T21:51:40Z You can also use the &quot;is&quot; keyword to avoid casting exceptions. http://stackoverflow.com/questions/1041675/java-timer/1041692#1041692 Comment by Eddie on Java Timer Eddie 2009-06-25T01:07:09Z 2009-06-25T01:07:09Z As Kevin said, you are calling &quot;timer.schedule(this, delay, period)&quot; with the same &quot;this&quot; each time. The TimerTask is not meant to be given to multiple different timers. Each TimerTask instance is meant to be scheduled exactly one time. http://stackoverflow.com/questions/1020734/revisitedstack-overflow-in-fortran-program/1020773#1020773 Comment by Eddie on Revisited:Stack Overflow in Fortran program Eddie 2009-06-20T03:40:47Z 2009-06-20T03:40:47Z Yes, it's entirely possible that this application is just using too much memory and as you say will need administrator system changes. http://stackoverflow.com/questions/1020653/how-can-you-do-anything-useful-without-mutable-state/1020793#1020793 Comment by Eddie on How can you do anything useful without mutable state? Eddie 2009-06-20T03:19:41Z 2009-06-20T03:19:41Z Well, you can certainly do useful things with the Integer and String classes. It's not like their immutability means you cannot have mutable state. http://stackoverflow.com/questions/1020734/revisitedstack-overflow-in-fortran-program Comment by Eddie on Revisited:Stack Overflow in Fortran program Eddie 2009-06-20T03:11:30Z 2009-06-20T03:11:30Z Also, I extended my answer to suggest putting the large arrays into a common block. This takes the large arrays off of the stack. However, you cannot dynamically allocate the arrays if you put them into a common block. http://stackoverflow.com/questions/1020734/revisitedstack-overflow-in-fortran-program Comment by Eddie on Revisited:Stack Overflow in Fortran program Eddie 2009-06-20T03:08:15Z 2009-06-20T03:08:15Z Did you change ALL instances of NGMAX from 30000 to 30, when you tried to see if that would help? If not, try changing ALL instances. http://stackoverflow.com/questions/1020734/revisitedstack-overflow-in-fortran-program/1020800#1020800 Comment by Eddie on Revisited:Stack Overflow in Fortran program Eddie 2009-06-20T03:07:36Z 2009-06-20T03:07:36Z But when you add information to your question, don't delete the original contents! Just add to the end. http://stackoverflow.com/questions/1020734/revisitedstack-overflow-in-fortran-program/1020800#1020800 Comment by Eddie on Revisited:Stack Overflow in Fortran program Eddie 2009-06-20T02:57:39Z 2009-06-20T02:57:39Z By the way, the best way to respond to answers and to leave feedback is to edit your original question. I believe you can do this even with a very low reputation. Under your question, look for a small word &quot;edit&quot; and click on that to edit your question. http://stackoverflow.com/questions/1020734/revisitedstack-overflow-in-fortran-program/1020794#1020794 Comment by Eddie on Revisited:Stack Overflow in Fortran program Eddie 2009-06-20T02:56:40Z 2009-06-20T02:56:40Z For the sake of trying, try to make NGMAX=30 -- if this does not run into the stack overflow, then that setting is the problem. http://stackoverflow.com/questions/1020734/revisitedstack-overflow-in-fortran-program/1020773#1020773 Comment by Eddie on Revisited:Stack Overflow in Fortran program Eddie 2009-06-20T02:53:58Z 2009-06-20T02:53:58Z Ah, I posted at the same time as your SECOND comment! Yes, we did not use any switch to control stack size. Instead, we compiled so that all variables were NOT allocated on the stack, but statically. This means direct recursion is not possible. For times when you don't need recursion, it allows having very large allocations that won't fit on the stack. http://stackoverflow.com/questions/1020734/revisitedstack-overflow-in-fortran-program/1020773#1020773 Comment by Eddie on Revisited:Stack Overflow in Fortran program Eddie 2009-06-20T02:52:18Z 2009-06-20T02:52:18Z I know for a fact that you're wrong, because I personally programmed under VAX/VMS in FORTRAN in the late 80s and the 90s. We in fact compiled our programs so that all variables were static, the equivalent of &quot;static&quot; in C, so the variables were not on the stack. I don't remember what the command-line parameter was, but I know for a fact that such a command-line option existed for the VAX/VMS FORTRAN compiler.