User Software Monkey - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T07:00:08Z http://stackoverflow.com/feeds/user/8946 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1829629/best-idiom-for-a-decrementing-loop 3 Best idiom for a decrementing loop Software Monkey 2009-12-01T23:16:19Z 2009-12-06T09:24:32Z <p>What's the best/preferred idiom for a decrementing for loop, and why?</p> <pre><code>for(int idx=(len-1); idx&gt;=0; idx--) {...} </code></pre> <p>or</p> <pre><code>for(int idx=(len-1); idx&gt;-1; idx--) {...} </code></pre> <p>or (based on sylvarking's answer, but using for to constrain the index scope)</p> <pre><code>for(int idx=len; idx--&gt;0; ) {...} </code></pre> <p>Is one or the other more likely to trip up another developer?</p> http://stackoverflow.com/questions/1851026/call-a-function-based-on-jvm-version/1851550#1851550 0 Answer by Software Monkey for Call a function based on JVM version. Software Monkey 2009-12-05T08:08:01Z 2009-12-05T08:08:01Z <p>If you can compile with Java 1.6, a simple way to do it by catching NoSuchMethodError. Following is an example from my code which gets the screen bounds accounting for the taskbar, but falls back to the entire bounds if the Java version is too early:</p> <pre><code>try { sb=wnd.getGraphicsConfiguration().getBounds(); } catch(NoSuchMethodError thr) { Dimension ss; ss=wnd.getToolkit().getScreenSize(); sb=new Rectangle(0,0,ss.width,ss.height); } </code></pre> <p>If you need to use reflection (because J6 changed the class version and you must compile to J5) then you just need to extract the J6 method with reflection, and catch MethodNotFoundException to execute the fallback call.</p> http://stackoverflow.com/questions/1850422/illegalmonitorstateexception/1850458#1850458 0 Answer by Software Monkey for IllegalMonitorStateException Software Monkey 2009-12-05T00:00:08Z 2009-12-05T00:00:08Z <p>You should print the stack trace, which will give you the exact location in the source. </p> <p>Unfortunately it's not uncommon for the JVM to throw exceptions which contain no detail message to assist in debugging.</p> http://stackoverflow.com/questions/1843565/java-get-a-unique-property-of-an-object-like-hashcode-but-collision-proof/1843619#1843619 1 Answer by Software Monkey for Java: get a unique property of an object (like hashcode, but collision proof) Software Monkey 2009-12-03T22:54:41Z 2009-12-03T23:48:06Z <p>Why not just use a serial number?</p> <pre><code>static private int serial=0; static public synchronized nextSerialNumber() { return ++serial; } </code></pre> <p>Or a combination/hybrid, say a long of ((hash&lt;&lt;32) | getNextSerial()).</p> <h2>To address the EDIT clarification</h2> <p>When you construct the object, allocate the serial number to a private member variable and return it for hashCode(). You should then override equals with a call to super.equals() (since a generated serial number is consistent with the default equals() implementation) because seeing a hashCode() override without a corresponding equals() override will red-flag the code to tools (and other programmers).</p> <pre><code>public class Vertex { private final int serial; // instance serial number public Vertex() { serial=nextSerialNumber(); ... } public int hashCode() { return serial; } public boolean equals(Object obj) { return super.equals(obj); // serial number hash-code consistent with default equals } ... static private int nextSerial=0; static public synchronized nextSerialNumber() { return nextSerial++; } } </code></pre> http://stackoverflow.com/questions/1836205/resizing-a-jframe/1836288#1836288 1 Answer by Software Monkey for Resizing a JFrame. Software Monkey 2009-12-02T22:23:09Z 2009-12-03T00:34:02Z <p>Simple answer - use layout management, including nesting multiple panels with different layouts to get the result you want. You've essentially got two choices: (a) use a layout manager to manage component location and sizing, or (b) do it all manually. You <strong>really</strong> don't want to do (b).</p> <p>You might want to start with the <a href="http://java.sun.com/docs/books/tutorial/uiswing/layout/using.html" rel="nofollow">layout manager tutorial</a>.</p> <p>Using a table based layout can make layout <em>significantly</em> easier than the standard layout managers distributed with Java; there are many available for free. Mine is at <a href="http://www.softwaremonkey.org/Code/MatrixLayout" rel="nofollow">www.SoftwareMonkey.org</a>.</p> <p>Here's an example (from the help in MatrixLayout, but I don't recall if I ever actually compiled the example code... I expect I did once):</p> <pre> +--------------------------------------------------------------------------------+ + | + Name : |________________________________________________________________| | + | + Address : |________________________________________________________________| | + | + |________________________________________________________________| | + | + |________________________________________________________________| | + | + City : |____________________| State |__| Zip |_____| - |____| | + | + Phone : |___|-|___|-|____| | + | + Notes : | | | | | + | | | | | + | | | | | + | | | | | + | | | | | + |______________________________| |______________________________| | + [BOTTOM-LEFT] [ BOTTOM-RIGHT ] | + | + [ Yes ] [ No ] [ Abort ] | + | +--------------------------------------------------------------------------------+ </pre> <pre><code>private void createContent(Container main){ String[] rows,cols; // row/column specification arrays JPanel phnpnl,cszpnl,btnpnl; // special nested panels // create components here... // CREATE MAIN PANEL WITH DESIRED ROWS AND COLUMNS rows=MatrixLayout.arrayOf(10,"Size=Pref CellAlign=Middle CellInsets=5,0"); // standard row spec rows[6] ="Size=100% CellAlign=Top CellInsets=5,0"; // note: row 7 ([6] is index) rows[7] ="Size=Pref CellAlign=Top CellInsets=5,0"; // note: row 8 ([7] is index) rows[8] ="Size=Pref CellAlign=Top CellInsets=5,0"; // note: row 9 ([8] is index) cols=MatrixLayout.arrayOf(3 ,"size=Pref CellAlign=Right CellInsets=5,0"); // standard column spec cols[1] ="Size=50% CellAlign=Left CellInsets=5,0"; // note: col 2 ([1] is index) cols[2] ="Size=50% CellAlign=Left CellInsets=5,0"; // note: col 3 ([2] is index) con.setLayout(new MatrixLayout(rows,cols,"Row=Cur Col=Next")); // CREATE SPECIAL NESTED PANELS phnpnl=MatrixLayout.singleRowBar(5,false,new DctComponent[]{phnPart1,phnPart2,phnPart3 }); cszpnl=MatrixLayout.singleRowBar(5,1 ,new DctComponent[]{city,createLabel("State"),state,createLabel("Zip"),zip,zipext}); btnpnl=MatrixLayout.singleRowBar(5,true ,new DctComponent[]{yes,no,cancel }); phnpnl.setName("PhonePanel"); cszpnl.setName("CityStateZipPanel"); btnpnl.setName("ButtonPanel"); // ADD COMPONENTS TO MAIN PANEL con.add(createLabel( "Name :"),"row=Next col=1"); con.add(name ," hAlign=Fill hSpan=2 "); con.add(createLabel("Address :"),"row=Next col=1"); con.add(address1," hAlign=Fill hSpan=2 "); con.add(address2,"Row=Next Col=2 hAlign=Fill hSpan=2 "); con.add(address3,"Row=Next Col=2 hAlign=Fill hSpan=2 "); con.add(createLabel( "City :"),"row=Next col=1"); con.add(cszpnl ," hSpan=2 "); con.add(createLabel( "Phone :"),"row=Next col=1"); con.add(phnpnl ," hSpan=2 "); con.add(createLabel( "Notes :"),"row=Next col=1"); con.add(notes1 ,"Row=Cur Col=2 hAlign=Fill vAlign=Fill "); con.add(notes2 ,"Row=Cur hAlign=Fill vAlign=Fill "); con.add(notes3 ,"Row=Next Col=2 hAlign=Left hGroup=NoteButtons"); con.add(notes4 ,"Row=Cur hAlign=Right hGroup=NoteButtons"); con.add(btnpnl ,"row=Next col=1 hAlign=Right hSpan=3"); main.setBorder(new DctEmptyBorder(10)); main.setBackground(SystemColor.window); } </code></pre> http://stackoverflow.com/questions/1835605/natural-language-processing-find-obscenities-in-english/1836269#1836269 0 Answer by Software Monkey for Natural Language Processing: Find obscenities in English? Software Monkey 2009-12-02T22:20:05Z 2009-12-02T22:20:05Z <p>I would advocate a large list of <em>simple</em> regex's. Smaller than a list of the variants, but not trying to capture anything more than letter alternatives in any given expression: like "f[u_-@#$%^&amp;*.]ck".</p> http://stackoverflow.com/questions/9388/actual-productivity-gains-from-multiple-monitors/341846#341846 -1 Answer by Software Monkey for Actual Productivity Gains from Multiple Monitors Software Monkey 2008-12-04T20:00:18Z 2009-12-02T03:39:26Z <p>I know this is late to the table, but FWIW, I have had dual monitors for about a month now and I honestly cannot see any real productivity improvement at all over 1. I would take a single very large high res monitor over two lower res monitors any day of the week.</p> <p>EDIT: So a <strike>few months</strike> year now with multiple monitors, and there are minor advantages, the most significant of which is having API documentation, email and/or a browser open on one monitor while coding on the other. But I still wouldn't trade, for example, my wide screen 26" 1920x1200 monitor for two 19" 1024x768 monitors.</p> http://stackoverflow.com/questions/390703/what-is-the-purpose-of-the-expression-new-string-in-java/390854#390854 19 Answer by Software Monkey for What is the purpose of the expression "new String(...)" in Java? Software Monkey 2008-12-24T05:57:18Z 2009-11-26T12:09:30Z <p>The one place where you may need <code>new String(String)</code> is to force a substring to copy to a new underlying character array, as in </p> <pre><code>small=new String(huge.substring(10,20)) </code></pre> <p>However, this behavior is unfortunately undocumented and implementation dependent.</p> <p>I have been burned by this when reading large files (some up to 20 MiB) in and carving it into lines after the fact. I ended up with all the strings for the lines referencing the entire file. Unfortunately, that unintentionally leaked the entire array for the few lines I held on to for a longer time than processing the file - I was forced to use <code>new String()</code> to work around it. </p> <p>The only implementation agnostic way to do this is:</p> <pre><code>small=new String(huge.substring(10,20).toCharArray()); </code></pre> <p>This unfortunately must copy the array twice, once for <code>toCharArray()</code> and once in the String constructor.</p> <p>There needs to be a documented way to get a new String by copying the chars of an existing one; or the documentation of <code>String(String)</code> needs to be improved to make it more explicit (there is an implication there, but it's rather vague and open to interpretation).</p> http://stackoverflow.com/questions/1788031/how-can-i-have-multiple-ssl-certificates-for-a-java-server 1 How can I have multiple SSL certificates for a Java server Software Monkey 2009-11-24T05:38:01Z 2009-11-25T01:34:36Z <p>I have an in-house HTTP server written in Java; full source code at my disposal. The HTTP server can configure any number of web sites, each of which will have a separate listen socket created with:</p> <pre><code>skt=SSLServerSocketFactory.getDefault().createServerSocket(prt,bcklog,adr); </code></pre> <p>Using a standard key store created with the Java keytool, I cannot for the life of me work out how to get different certificates associated with different listen sockets so that each configured web site has it's own certificate.</p> <p>I'm in a time pinch for this now, so some code samples that illustrate would be most appreciated. But as much I would appreciate any good overview on how JSSE hangs together in this regard (I have searched Sun's JSSE doco until my brain hurts (literally; though it might be as much caffeine withdrawal)).</p> <p><strong>Edit</strong></p> <p>Is there no simple way to use the alias to associate the server certificates in a key store with the listen sockets? So that:</p> <ul> <li>The customer has one key store to many for all certificates, and</li> <li>There is no need to fiddle around with multiple key stores, etc.</li> </ul> <p>I was getting the impression (earlier this afternoon) that I could write a simple KeyManager, with only <code>chooseServerAlias(...)</code> returning non-null, that being the name of the alias I wanted - anyone have any thoughts on that line of reasoning?</p> <p><strong>Solution</strong></p> <p>The solution I used, built from <a href="http://stackoverflow.com/users/3474/sylvarking">slyvarking</a>'s answer was to create a temporary key store and populate it with the desired key/cert extracted from the singular external key store. Code follows for any who are interested (svrctfals is my "server certificate alias" value):</p> <pre><code> SSLServerSocketFactory ssf; // server socket factory SSLServerSocket skt; // server socket // LOAD EXTERNAL KEY STORE KeyStore mstkst; try { String kstfil=GlobalSettings.getString("javax.net.ssl.keyStore" ,System.getProperty("javax.net.ssl.keyStore" ,"")); String ksttyp=GlobalSettings.getString("javax.net.ssl.keyStoreType" ,System.getProperty("javax.net.ssl.keyStoreType" ,"jks")); char[] kstpwd=GlobalSettings.getString("javax.net.ssl.keyStorePassword",System.getProperty("javax.net.ssl.keyStorePassword","")).toCharArray(); mstkst=KeyStore.getInstance(ksttyp); mstkst.load(new FileInputStream(kstfil),kstpwd); } catch(java.security.GeneralSecurityException thr) { throw new IOException("Cannot load keystore ("+thr+")"); } // CREATE EPHEMERAL KEYSTORE FOR THIS SOCKET USING DESIRED CERTIFICATE try { SSLContext ctx=SSLContext.getInstance("TLS"); KeyManagerFactory kmf=KeyManagerFactory.getInstance(KeyManagerFactory.getDefaultAlgorithm()); KeyStore sktkst; char[] blkpwd=new char[0]; sktkst=KeyStore.getInstance("jks"); sktkst.load(null,blkpwd); sktkst.setKeyEntry(svrctfals,mstkst.getKey(svrctfals,blkpwd),blkpwd,mstkst.getCertificateChain(svrctfals)); kmf.init(sktkst,blkpwd); ctx.init(kmf.getKeyManagers(),null,null); ssf=ctx.getServerSocketFactory(); } catch(java.security.GeneralSecurityException thr) { throw new IOException("Cannot create secure socket ("+thr+")"); } // CREATE AND INITIALIZE SERVER SOCKET skt=(SSLServerSocket)ssf.createServerSocket(prt,bcklog,adr); ... return skt; </code></pre> http://stackoverflow.com/questions/1792261/java-maths-parsing-api/1794104#1794104 1 Answer by Software Monkey for Java Math(s) Parsing API Software Monkey 2009-11-25T01:29:47Z 2009-11-25T01:29:47Z <p>You may find my <a href="http://www.softwaremonkey.org/Code/MathEval" rel="nofollow">math expression evaluator</a> useful; it's completely free and it's tiny.</p> http://stackoverflow.com/questions/38305/how-do-i-strip-the-fluff-out-of-a-third-party-library/1788498#1788498 1 Answer by Software Monkey for How do I strip the fluff out of a third party library? Software Monkey 2009-11-24T07:47:12Z 2009-11-24T07:47:12Z <p>I use <a href="http://proguard.sourceforge.net" rel="nofollow">ProGuard</a> for this. As well as being an excellent obfuscator, it has a code shrinking phase which can combine multiple JARs and then strip out any unused classes or class members. It does an <strong>excellent</strong> job at shrinking.</p> http://stackoverflow.com/questions/376253/stretch-and-scale-css-background 4 Stretch and Scale CSS Background Software Monkey 2008-12-17T22:21:25Z 2009-11-17T19:59:03Z <p>Is there any way to get a background in CSS to stretch or scale to fill its container?</p> http://stackoverflow.com/questions/1670859/wrapping-an-existing-application-with-jni/1670902#1670902 1 Answer by Software Monkey for Wrapping an existing application with JNI Software Monkey 2009-11-03T23:48:52Z 2009-11-06T18:20:34Z <p>You will still need to write a JNI library of some sort to wrap your access to the existing code (aka, shared object, DLL, service program, etc). This is because JNI requires a rather obtuse (but sensible) naming convention for the native functions invoked, because you need to move data in and out of Java memory space and because you need to have conceptual "bridging" code between Java and your native function.</p> <p>For example, I wrote a JNI library to provide access to existing C functions on the iSeries. One such function to read from a data area looks as follows:</p> <pre><code>JNIEXPORT void JNICALL Java_com_xxx_jni400_DataArea_jniGetDataArea(JNIEnv *jep, jobject thsObj, jbyteArray qulnam, jint str, jint len, jbyteArray rtndta, jint rtnlen) { jbyte *qn,*rd; Qwc_Rdtaa_Data_Returned_t *drt; QFBK2_T fbk; byte nam[11],lib[11]; byte *ptr; // SETUP thsObj=thsObj; qn=(*jep)-&gt;GetByteArrayElements(jep,qulnam,0); rd=(*jep)-&gt;GetByteArrayElements(jep,rtndta,0); fbk.pro=sizeof(fbk); fbk.avl=0; // INVOKE QWCRDTAA(rd,rtnlen,(byte*)qn,str,len,&amp;fbk); // HANDLE SUCCESSFUL INVOCATION if(fbk.avl==0) { drt=(Qwc_Rdtaa_Data_Returned_t*)rd; if(drt-&gt;Length_Value_Returned&gt;0) { /* pad with spaces until the length requested */ ptr=(byte*)(rd+sizeof(*drt)+drt-&gt;Length_Value_Returned); for(; drt-&gt;Length_Value_Returned&lt;len; drt-&gt;Length_Value_Returned++,ptr++) { *ptr=' '; } } } // RELEASE JAVA MEMORY LOCKS (*jep)-&gt;ReleaseByteArrayElements(jep,qulnam,qn,JNI_ABORT); /* discard array changes */ (*jep)-&gt;ReleaseByteArrayElements(jep,rtndta,rd,0 ); /* copy back changes */ // TRANSFORM NATIVE ERROR INTO AN EXCEPTION AND THROW if(fbk.avl!=0) { byte eid[8],dta[201]; word dtalen; f2s(nam,sizeof(nam),(byte*)qn ,10); f2s(lib,sizeof(lib),(byte*)(qn+10),10); dtalen=(word)mMin( sizeof(fbk.dta),(fbk.avl-(sizeof(fbk)-sizeof(fbk.dta))) ); f2s(eid,sizeof(eid),fbk.eid,sizeof(fbk.eid)); f2s(dta,sizeof(dta),fbk.dta,dtalen); if(mStrEquI(eid,"CPF1015") || mStrEquI(eid,"CPF1021")) { throwEscape(jep,90301,"Could not find data area %s in library %s",nam,lib); } else if(mStrEquI(eid,"CPF1016") || mStrEquI(eid,"CPF1022")) { throwEscape(jep,90301,"Not authorized to data area %s in library %s",nam,lib); } else if(mStrEquI(eid,"CPF1063") || mStrEquI(eid,"CPF1067")) { throwEscape(jep,90301,"Cannot allocate data area %s in library %s",nam,lib); } else if(mStrEquI(eid,"CPF1088") || mStrEquI(eid,"CPF1089")) { throwEscape(jep,90301,"Substring %i,%i for data area %s in library %s are not valid",str,len,nam,lib); } else { if(strlen(dta)&gt;0) { throwEscape(jep,90001,"System API QWCRDTAA returned error message ID %s (%s)",eid,dta);} else { throwEscape(jep,90001,"System API QWCRDTAA returned error message ID %s",eid); } } } } </code></pre> <p>Note the one-line invocation for underlying existing API, QWCRDTAA, which is provided by IBM; the rest is Java-centric wrapping which is necessary to make the call and deal with the results.</p> <p>Also, be very careful that what you invoke is thread-safe, or that you protect the code from concurrent invocations globally in the Java layer, or that you protect the code with a mutex in the O/S layer.</p> <p>PS: Note that non-threadsafe native code is <em>globally</em> non-threadsafe; you must prevent concurrent invocation with all other non-threadsafe native code, not just the one method you are invoking. This is because it might be unsafe due to an underlying call to some other function which other unsafe methods call (like strerror(), (if my C memory serves well)).</p> http://stackoverflow.com/questions/1683610/can-a-thread-observe-junk-values-in-an-object-due-to-memory-incoherency 2 Can a thread observe junk values in an object due to memory incoherency? Software Monkey 2009-11-05T21:06:17Z 2009-11-05T22:36:28Z <p>After a lot of research I believe I understand the JMM quite well, certainly well enough to know that when an object is shared between two threads you must synchronize all access on the same monitor. I understand that if multiple active threads access an object concurrently all bets are off as to what they will observe.</p> <p>However, if an object is deterministically and actually constructed before some other thread which uses it is started (or that thread is even constructed), does the JMM guarantee that the contents of the object seen by the later thread are the same as was configured by the earlier set-up thread.</p> <p>IOW, is it possible to reference an object for the first time in a thread and observe dirty memory due to, e.g. CPU caching, instead of the real contents of the object? Or does the JMM guarantee that when first obtaining a reference to any given object, the memory it references is coherent?</p> <p>I ask because there is one specific pattern I use in a number of places which I am still unsure about. Often I have an object which is constructed and configured in a piece-meal fashion and then subsequently used immutably. Because it's configured piece-meal, none of it's members can be final (and I don't want to change these all to a builder pattern unless I have to).</p> <p>For example, creating an HTTP connection handler, and adding plugin objects to handle specific HTTP requests. The handler is created and configured using mutators, and then installed into a TCP connection processor which uses a thread pool to process connections. Since the connection handler is configured and installed before the connection processor's thread pool is started and never changed once installed into the connection processor I don't use explicit synchronization between the thread which sets everything up and the threads which process connections.</p> <p>In this specific case, it's probable that the thread configuring is also the same thread which starts the thread pool, and since the thread pool start is synchronized all the threads which run out of it are also synchronized on the same thread pool object, so this might mask any underlying problem (it's not required by my API that the starting thread is the same as the configuring thread).</p> http://stackoverflow.com/questions/1597405/what-happens-to-a-declared-uninitialized-variable-in-c-does-it-have-a-value/1597411#1597411 5 Answer by Software Monkey for What happens to a declared, uninitialized variable in C? Does it have a value? Software Monkey 2009-10-20T21:26:22Z 2009-10-20T22:34:58Z <p>The value is undefined (or indeterminate to use another English word with the same semantic meaning in this context); it may be whatever was previously in the memory location.</p> http://stackoverflow.com/questions/1584177/is-it-possible-valid-to-have-a-tcp-connection-with-secure-login-only-but-non-sec/1584181#1584181 1 Answer by Software Monkey for Is it possible/valid to have a TCP connection with secure login only, but non-secure messages? Software Monkey 2009-10-18T06:37:31Z 2009-10-18T06:37:31Z <p>You can use a hashed exchange, with each party sending a per-connection nonce (a one-time random value).</p> http://stackoverflow.com/questions/1569463/repaint-frame-when-resized/1569548#1569548 0 Answer by Software Monkey for Repaint frame when resized? Software Monkey 2009-10-14T23:24:10Z 2009-10-14T23:24:10Z <p>You need to dig further because repaint() and paint() most certainly <em>are</em> called when you resize a frame - it's the only way the frame can cause it's contents to be painted. It is most likely that you're not seeing the repaint reach your specific component in the frame, perhaps because the particular layout you are using is not affected if the window is made larger. Or if you have no layout, then you must subclass Frame and explicitly have it call paint on the subcomponents, since there is no layout manager to do that for you.</p> <p>Note that whether or not painting is done repeatedly <em>while</em> you are resizing, as opposed to just once after you let go the mouse button may be an operating system option.</p> http://stackoverflow.com/questions/924285/efficiency-of-java-double-brace-initialization/924433#924433 0 Answer by Software Monkey for Efficiency of Java "Double Brace Initialization"? Software Monkey 2009-05-29T04:50:44Z 2009-10-12T18:26:03Z <p>I second Nat's answer, except I would use a loop instead of creating and immediately tossing the implicit List from asList(elements):</p> <pre><code>static public Set&lt;T&gt; setOf(T ... elements) { Set set=new HashSet&lt;T&gt;(elements.size()); for(T elm: elements) { set.add(elm); } return set; } </code></pre> http://stackoverflow.com/questions/310533/java-obfuscators/310608#310608 4 Answer by Software Monkey for Java Obfuscators Software Monkey 2008-11-22T00:13:19Z 2009-10-07T17:09:42Z <p>I use <a href="http://proguard.sourceforge.net" rel="nofollow">ProGuard</a> heavily for all my release builds and I have found it is excellent. I can't recommend it enough!</p> <p>I <em>have</em> encountered obscure bugs caused by it's optimizations on several occasions and I now disable optimizations across the board - haven't had a problem caused by ProGuard since. Though, to be fair, these were all quite some versions ago - YMMV.</p> <p>I use the GUI <em>only</em> to get a config started, and then I resort to editing the text config myself, which is really very simple to do.</p> <p>I have quite complex projects all of which involve dynamic loading and reflection. I also heavily use reflection for a callback implementation. ProGuard has coped with these very well.</p> <p>EDIT: We also use DashO Pro for one of our products - I looked into it for packaging the products I am responsible for and concluded that it's configuration was too convoluted and complex; also integrating it into the build script seemed like a bit of a pain. But again, to be fair, this was about 7 years ago... so it might be better in current versions.</p> http://stackoverflow.com/questions/1025837/initialize-java-generic-array-of-type-generic/1435310#1435310 0 Answer by Software Monkey for Initialize Java Generic Array of Type Generic Software Monkey 2009-09-16T20:34:37Z 2009-09-16T20:34:37Z <p>Also, you can suppress the warning on a method by method basis using annotations:</p> <pre><code>@SuppressWarnings("unchecked") public HashTable(int initialSize) { ... } </code></pre> http://stackoverflow.com/questions/1430661/jwindow-alway-on-top-not-getting-focus-events/1431052#1431052 0 Answer by Software Monkey for JWindow alway on top not getting focus events. Software Monkey 2009-09-16T05:10:40Z 2009-09-16T05:10:40Z <p>If you really want to display a popup menu, you should be using JPopupMenu, not implementing it yourself.</p> http://stackoverflow.com/questions/1387027/java-regex-on-byte-array/1387726#1387726 0 Answer by Software Monkey for Java: Regex on byte array Software Monkey 2009-09-07T05:50:24Z 2009-09-07T05:50:24Z <p>I would suggest you just implement a CharSequence wrapper on a byte array. Something like this (I just wrote this directly in, not compiled... but you get the idea).</p> <pre><code>public class ByteChars implements CharSequence ... ByteChars(byte[] arr) { this(arr,0,arr.length); } ByteChars(byte[] arr, int str, int end) { //check str and end are within range here strOfs=str; endOfs=end; bytes=arr; } public char charAt(int idx) { //check idx is within range here return (char)(bytes[strOfs+idx]&amp;0xFF); } public int length() { return (endOfs-strOfs); } public CharSequence subSequence(int str, int end) { //check str and end are within range here return new ByteChars(arr,(strOfs+str,strOfs+end); } public String toString() { return new String(bytes,strOfs,(endOfs-strOfs),"ISO8859_1"); } </code></pre> <p>And, of course, you could easily make a reusable mutable variant so as not to have to create a new object for every byte array.</p> http://stackoverflow.com/questions/1377135/are-there-any-java-pdf-creation-alternatives-to-itext/1377543#1377543 0 Answer by Software Monkey for Are there any Java PDF creation alternatives to iText? Software Monkey 2009-09-04T06:27:26Z 2009-09-04T06:27:26Z <p>Just for FWIW, LGPL is a <em>more</em> permissive license than GPL which permits use in proprietary works without requiring that the work in which it's used is open-sourced or anything else. There should be no reason you can use an LGPL product in anything. That includes if you want to change the LGPL software or create a derivative work, never mind just using it as a black box.</p> <p>Disclaimer: I am not a lawyer - read and understand the license yourself or have your legal team look at it.</p> http://stackoverflow.com/questions/1365774/how-to-hide-an-image-button-in-android-or-java/1365779#1365779 3 Answer by Software Monkey for how to Hide an image button in Android or JAVA ....????? Software Monkey 2009-09-02T04:05:06Z 2009-09-02T04:05:06Z <p>Assuming you really mean a button (Button or JButton, or similar), can you not simply do </p> <pre><code>myButton.setVisible(false); </code></pre> <p>??</p> http://stackoverflow.com/questions/810043/does-a-free-general-purpose-asn-1-decode-dump-inspect-program-exist 1 Does a free general purpose ASN.1 Decode/Dump/Inspect program exist? Software Monkey 2009-05-01T03:17:45Z 2009-09-01T21:04:03Z <p>Does a free general purpose ASN.1 Decode/Dump/Inspect program exist? I have a suspect ASN.1 block which may have failed decryption, and I would like to inspect it to see it it appears valid, and if so what elements it contains.</p> http://stackoverflow.com/questions/1244946/how-do-i-control-the-overall-size-constraints-of-a-panel-with-miglayout/1338910#1338910 2 Answer by Software Monkey for How do I control the overall size constraints of a panel with MigLayout? Software Monkey 2009-08-27T04:53:38Z 2009-08-27T05:28:21Z <p>Personally, I wouldn't stress too much about the minimum size as long as the preferred size (what you get after pack() is appropriate. If for some reason the user wants to reduce the window down to a size where the components in it get clipped, then let them. Maybe they just want to get the bottom of your window out the way so they can see what remains and something else on their monitor at the same time.</p> <p>I would argue that the true minimum size of any window is the sum of it's border and title bar and room for a few characters of the title text and an ellipsis. If the user want something smaller than what will allow all the components to show unclipped who are you to enforce otherwise?</p> <p>Using any of the several table-based layout managers available on the web, like MIG Layout, you should be able to easily get the resizing behavior you want.</p> <p>Shameless self plug: If you find MIG Layout hard to use, my <a href="http://www.softwaremonkey.org/Code/MatrixLayout" rel="nofollow">MatrixLayout</a> is, I think, easier to use. But MIG layout is more powerful. I deliberately chose to code MatrixLayout to not inhibit panels from reducing below their calculated minimum size.</p> http://stackoverflow.com/questions/613603/java-nimbus-laf-with-transparent-text-fields 2 Java Nimbus LAF with transparent text fields Software Monkey 2009-03-05T04:48:44Z 2009-08-21T17:07:46Z <p>I have an application that uses disabled JTextFields in several places which are intended to be transparent - allowing the background to show through instead of the text field's normal background.</p> <p>When running the new Nimbus LAF these fields are opaque (despite setting setOpaque(false)), and my UI is broken. It's as if the LAF is ignoring the opaque property. Setting a background color <strike>explicitly is both difficult in several places, and less than optimal due to background images</strike> actually doesn't work - it still paints it's LAF default background over the top, leaving a border-like appearance (the splash screen below has the background explicitly set to match the image).</p> <p>Any ideas on how I can get Nimbus to not paint the background for a JTextField?</p> <p>Note: I need a JTextField, rather than a JLabel, because I need the thread-safe setText(), and wrapping capability.</p> <p>Note: My fallback position is to continue using the system LAF, but Nimbus does look substantially better.</p> <p>See example images below.</p> <p><hr /></p> <h2>Conclusions</h2> <p>The <em>surprise</em> at this behavior is due to a misinterpretation of what setOpaque() is meant to do - from the Nimbus bug report:</p> <blockquote> <p>This is a problem the the orginal design of Swing and how it has been confusing for years. The issue is setOpaque(false) has had a side effect in exiting LAFs which is that of hiding the background which is not really what it is ment for. It is ment to say that the component my have transparent parts and swing should paint the parent component behind it.</p> </blockquote> <p>It's unfortunate that the Nimbus components also appear not to honor setBackground(null) which would otherwise be the recommended way to stop the background painting. Setting a fully transparent background seems unintuitive to me.</p> <p>In my opinion, setOpaque()/isOpaque() is a faulty public API choice which should have been only:</p> <pre><code>public boolean isFullyOpaque(); </code></pre> <p>I say this, because isOpaque()==true is a contract with Swing that the component subclass will take responsibility for painting it's entire background - which means the parent can skip painting that region if it wants (which is an important performance enhancement). Something external cannot be <em>directly</em> change this contract, whose fulfillment may be coded into the component. </p> <p>So the opacity of the component should not have been settable using setOpaque(). Instead something like setBackground(null) should cause many components to "no long have a background" and therefore become not fully opaque. By way of example, in an ideal world most components should have an isOpaque() that looks like this:</p> <pre><code>public boolean isOpaque() { return (background!=null); } </code></pre> <p><hr /></p> <p><img src="http://i41.tinypic.com/sviczq.png" alt="Example" /></p> <p><img src="http://i44.tinypic.com/35d80ao.png" alt="alt text" /></p> http://stackoverflow.com/questions/1159400/span-grow-bug-in-miglayout/1310299#1310299 0 Answer by Software Monkey for Span/Grow bug in MigLayout? Software Monkey 2009-08-21T06:12:32Z 2009-08-21T06:12:32Z <p>You could also try my <a href="http://www.softwaremonkey.org/Code/MatrixLayout" rel="nofollow">MatrixLayout</a> layout manager as an alternative. The concept is the similar as MiG Layout - table based. It's not as powerful, but it seems (to me, anyway) much simpler to use (with great power comes great complexity). But, to be honest, that might just be because I haven't tried hard to understand MiG Layout.</p> http://stackoverflow.com/questions/1268222/java-collection-with-linkedhashmap-attributes/1297344#1297344 1 Answer by Software Monkey for Java - Collection with LinkedHashMap Attributes Software Monkey 2009-08-19T00:57:17Z 2009-08-19T00:57:17Z <p>I have such a thing, a <a href="http://www.softwaremonkey.org/Code/LinkedTree" rel="nofollow">Linked Tree Map</a> free and unencumbered on my website. It sounds close to what you want.</p> http://stackoverflow.com/questions/1289896/blackberry-java-2d-geometry-and-collision-package/1291959#1291959 1 Answer by Software Monkey for blackberry - java - 2D geometry and collision package Software Monkey 2009-08-18T05:27:07Z 2009-08-18T05:27:07Z <p>The usefulness of this answer will depend on exactly what type (SE or ME) and what version (and, for ME, what config and profile) of JVM you are targeting. Since it's a blackberry, you are likely J2ME of some flavor - YMMV.</p> <p>That said, the functions you want appear to be present in java.awt.Rectangle, java.awt.geom.Rectangle2D and java.awt.geom.Line2D.</p> http://stackoverflow.com/questions/1815613/what-next-generation-low-level-language-is-the-best-bet-to-migrate-the-code-base/1815727#1815727 Comment by Software Monkey on What next generation low level language is the best bet to migrate the code base ? Software Monkey 2009-12-04T02:43:32Z 2009-12-04T02:43:32Z &quot;won't happen this decade&quot; - easy to say in the last month of the decade :-) http://stackoverflow.com/questions/1843677/why-does-invokelater-cause-my-jframe-not-to-display-correctly/1843987#1843987 Comment by Software Monkey on Why does InvokeLater cause my JFrame not to display correctly? Software Monkey 2009-12-04T00:55:59Z 2009-12-04T00:55:59Z @Marc: No it won't paint because the painting is a separate event which was posted to the event queue but never processes. Painting does not happen inline with GUI construction (since it needs to arise from a system request to paint to a specific graphics context). http://stackoverflow.com/questions/1843747/why-would-buffer-overruns-cause-segmentation-faults-when-accessing-an-integer/1843939#1843939 Comment by Software Monkey on Why would buffer overruns cause segmentation faults when accessing an integer? Software Monkey 2009-12-04T00:33:49Z 2009-12-04T00:33:49Z Actually, a nul is the ASCII control character '\0'; '0' is ASCII 48. http://stackoverflow.com/questions/1843850/c-programming-ftell-fseek-fread-read-size-of-a-file/1843874#1843874 Comment by Software Monkey on C-programming ftell fseek fread, read size of a file Software Monkey 2009-12-04T00:28:38Z 2009-12-04T00:28:38Z @OP: You should have changed <code>...sizeof(val),2...</code> to <code>...1,sizeof(val)...</code>. http://stackoverflow.com/questions/1843905/clean-up-code-in-finalize-or-finally/1843919#1843919 Comment by Software Monkey on Clean up code in finalize() or finally()? Software Monkey 2009-12-03T23:56:37Z 2009-12-03T23:56:37Z Nice - a Java question with a C# article to answer it. Beware that the details in the article may or may not be relevant to Java. http://stackoverflow.com/questions/1843565/java-get-a-unique-property-of-an-object-like-hashcode-but-collision-proof Comment by Software Monkey on Java: get a unique property of an object (like hashcode, but collision proof) Software Monkey 2009-12-03T23:44:42Z 2009-12-03T23:44:42Z @Steve: The System.identityHashCode is not guaranteed to be unique, either: 'Returns the same hash code for the given object as would be returned by the default method hashCode(), whether or not the given object's class overrides hashCode()' http://stackoverflow.com/questions/1829629/best-idiom-for-a-decrementing-loop/1829656#1829656 Comment by Software Monkey on Best idiom for a decrementing loop Software Monkey 2009-12-03T20:48:13Z 2009-12-03T20:48:13Z One thing I <i>don't</i> like about this is that the scope of n is greater than the loop; using for(int n... constrains the scope better. http://stackoverflow.com/questions/1837874/invalid-token-when-using-octal-numbers/1837896#1837896 Comment by Software Monkey on Invalid Token when using Octal numbers. Software Monkey 2009-12-03T07:15:25Z 2009-12-03T07:15:25Z I wish every language required this for octal numbers; how stupid was using a lead 0. Now if we can just get support for 0sNNN (for sexagesimal) and put base-64 numbers into our code. http://stackoverflow.com/questions/1837874/invalid-token-when-using-octal-numbers/1837927#1837927 Comment by Software Monkey on Invalid Token when using Octal numbers. Software Monkey 2009-12-03T07:00:39Z 2009-12-03T07:00:39Z And, in future, don't use answers to make comments... that's what comments are for. http://stackoverflow.com/questions/1798002/numerical-integration-in-java/1798041#1798041 Comment by Software Monkey on Numerical integration in Java? Software Monkey 2009-12-03T00:32:34Z 2009-12-03T00:32:34Z At zenzen - if this solved your problem, please accept it. http://stackoverflow.com/questions/1836205/resizing-a-jframe/1836288#1836288 Comment by Software Monkey on Resizing a JFrame. Software Monkey 2009-12-02T23:47:37Z 2009-12-02T23:47:37Z Layout management is the way to (effectively) achieve that; but it is a different approach than attaching things to the edges of the frame (I wrote a layout manager some years ago to layout in that manner, but later moved to table-based layout since it's both simpler and more powerful). http://stackoverflow.com/questions/1829629/best-idiom-for-a-decrementing-loop/1830008#1830008 Comment by Software Monkey on Best idiom for a decrementing loop Software Monkey 2009-12-02T20:32:51Z 2009-12-02T20:32:51Z I also have to disagree; to me, coding an incrementing loop in this context fails to express the intent of the loop. If I am searching an array backwards to find the last match, then a decrementing loop expresses that better (again, to me). Your example seems counter-intuitive in any real context. http://stackoverflow.com/questions/1829629/best-idiom-for-a-decrementing-loop/1829644#1829644 Comment by Software Monkey on Best idiom for a decrementing loop Software Monkey 2009-12-02T20:30:26Z 2009-12-02T20:30:26Z @Thorbjorn: Actually, I believe that this is the first time in 30 years of programming I have made this mistake, and this quite likely because I was actually working on a (different) inclusive loop when I asked the question because I saw a decrementing loop nearby in the code. http://stackoverflow.com/questions/1829629/best-idiom-for-a-decrementing-loop/1829656#1829656 Comment by Software Monkey on Best idiom for a decrementing loop Software Monkey 2009-12-01T23:51:15Z 2009-12-01T23:51:15Z But taking advantage of the comparison to zero opcode, one would need idx!=0 - something I avoid on principle because loops can then overrun if the index is irregularly changed (decremented or incremented by more than 1, possibly only under some conditions). http://stackoverflow.com/questions/1829629/best-idiom-for-a-decrementing-loop/1829644#1829644 Comment by Software Monkey on Best idiom for a decrementing loop Software Monkey 2009-12-01T23:46:34Z 2009-12-01T23:46:34Z Oops; good point - I was just working on some code that was inclusive (was actually from top to bottom of a rectangular area).