User Milhous - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T00:42:20Z http://stackoverflow.com/feeds/user/17712 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/376561/openid-java 8 OpenID Java Milhous 2008-12-18T00:39:54Z 2009-12-14T22:41:30Z <p>Is there an openID implementation in Java? I would like to use this in a tomcat application.</p> http://stackoverflow.com/questions/1890591/postscript-number-of-copies 1 Postscript number of copies Milhous 2009-12-11T20:15:01Z 2009-12-11T22:59:48Z <p>Is there a way to edit a postscript file, to add or increase the number of copies to be printed?</p> http://stackoverflow.com/questions/1794460/how-can-i-save-an-object-in-the-file/1794505#1794505 0 Answer by Milhous for how can I save an object in the file??? Milhous 2009-11-25T03:54:41Z 2009-11-25T03:54:41Z <p>You can use <a href="http://xstream.codehaus.org/tutorial.html" rel="nofollow">Xstream</a> to write objects to xml files.</p> http://stackoverflow.com/questions/1786010/importing-a-text-file/1786122#1786122 2 Answer by Milhous for importing a text file Milhous 2009-11-23T21:29:36Z 2009-11-23T21:29:36Z <p>You can use the Scanner Class.</p> <pre><code>Scanner s = new Scanner(new File("input.txt")); name = s.nextLine(); phone = s.nextLine(); mobile = s.nextLine(); address = s.nextLine(); </code></pre> http://stackoverflow.com/questions/1780896/java-getting-the-properties-of-a-class-to-construct-a-string-representation/1780914#1780914 1 Answer by Milhous for Java: Getting the properties of a class to construct a string representation Milhous 2009-11-23T03:07:35Z 2009-11-23T03:07:35Z <p>You may run into the problem of speed. If you are using reflection, it can be really slow, in comparison to running native code. If you are going to use reflection, then you should probably have an in memory cache of the variables you are goaing to iterate over.</p> http://stackoverflow.com/questions/346721/linq-for-java 3 Linq for java Milhous 2008-12-06T20:23:58Z 2009-11-11T07:32:03Z <p>Would a LINQ for java be a useful tool? I have been working on a tool that will allow a java object to map to a row in a database. </p> <ol> <li>Would this be useful for java programmers? </li> <li>What features would be useful?</li> </ol> http://stackoverflow.com/questions/1564037/netbeans-generated-code 0 Netbeans generated code Milhous 2009-10-14T03:00:32Z 2009-11-10T22:32:26Z <p>I have a netbeans project that I imported into eclipse. When I use my code formatting style in eclipse, it breaks the auto generated code in Netbeans. The code is similar to the following.</p> <pre><code> private void customActionPerformed(java.awt.event.ActionEvent evt) {// GEN-FIRST:event_customActionPerformed // aaa }// GEN-LAST:event_customActionPerformed </code></pre> <p>Is there any way to tell Netbeans to go back and use the correctly named methods? Currently when I am in the GUI Builder, it will not find the method that it had previously generated.</p> http://stackoverflow.com/questions/1686977/why-java-language-does-not-offer-a-way-to-declare-getters-and-setters-of-a-given/1711229#1711229 0 Answer by Milhous for Why Java language does not offer a way to declare getters and setters of a given "field" through annotations ? Milhous 2009-11-10T21:13:38Z 2009-11-10T21:13:38Z <p>Do you use and IDE that has features like this built in. For example Eclipse will allow you to generate the getter/setter methods of your choice for your class. A question I have is how are you going to deal with taking the object that has a "default" setter, and change that to a custom setter?</p> http://stackoverflow.com/questions/1707756/how-to-auto-start-an-application-after-system-boot-up-in-mac-os/1709423#1709423 0 Answer by Milhous for How to auto-start an application after system boot up in Mac os Milhous 2009-11-10T16:49:38Z 2009-11-10T16:49:38Z <p>You can also use Launchd to start your application at the system level. Here is an <a href="http://milhous.no-ip.com:15980/blog/2008/09/14/launchd-example-in-os-x-leopard-105/" rel="nofollow">example</a>.</p> http://stackoverflow.com/questions/1706027/jdbc-connection-and-statement-classes/1709398#1709398 0 Answer by Milhous for JDBC Connection and Statement Classes Milhous 2009-11-10T16:46:19Z 2009-11-10T16:46:19Z <p>I have worked on an abstraction for databases at work. Here is some example code</p> <pre><code>Database database = new Database(new SQL("host", "port","database", "username","password")); List&lt;tStd_M_lt&gt; bases = database.select(tStd_M_lt.class, new Where(tStd_M_lt.FIELDS.ITEM_ID.getDatabaseFieldName(), OPERATOR.LIKE, "?"), "%Base%"); for (tStd_M_lt base : bases) { List&lt;tShower_Base_Kit&gt; kits = database.selectByForiegnKey(tShower_Base_Kit.class, base); } </code></pre> <p>The project is called <a href="http://code.google.com/p/azirt/" rel="nofollow">azirt</a>.</p> http://stackoverflow.com/questions/866989/fish-interactive-shell-full-path 0 Fish Interactive Shell full path Milhous 2009-05-15T04:34:32Z 2009-10-24T12:00:01Z <p>Is there a way in the Fish Interactive shell for the full path to be displayed. Currently when I navigate to a directory I get the following shell.</p> <pre><code>millermj@Dodore ~/o/workspace </code></pre> <p>but I would rather see</p> <pre><code>millermj@Dodore ~/o-town/workspace </code></pre> http://stackoverflow.com/questions/1615071/should-query-languages-have-priority-of-operator-or-higher-than-priority-of-and/1615193#1615193 1 Answer by Milhous for Should query languages have priority of operator OR higher than priority of AND ? Milhous 2009-10-23T18:33:36Z 2009-10-23T18:33:36Z <p>I think that you are missing the point of the priority of operators. They are there merely as a convenience to the programmer/book writer. The use of the order of operations makes it so that certain clauses can be written without parens, but the use of parens makes sure the reader knows exactly what the code is doing, especially when different languages have different order of operations.</p> http://stackoverflow.com/questions/223052/find-coreldraw-web-links 1 Find CorelDraw Web links Milhous 2008-10-21T18:58:25Z 2009-10-11T22:00:02Z <p>Does anyone know how to get the Web links in a CorelDraw document? I am using CorelDraw 13 X3 on Windows, and it comes with a Link manager and VBA.</p> http://stackoverflow.com/questions/174308/using-both-eclipse-and-netbeans-on-the-same-project 16 Using both Eclipse and NetBeans on the same project Milhous 2008-10-06T13:34:39Z 2009-09-29T11:50:07Z <p>Eclipse is a really great editor, which I prefer to use, but the GUI design tools for Eclipse are lacking. On the other hand, NetBeans works really well for GUI design. </p> <p>Are there any tips, tricks or pitfalls for using NetBeans for GUI design and Eclipse for everything else on the same project?</p> <p><strong>EDIT:</strong> I tried Maven, and it does not seem to work (too complex for my needs).</p> http://stackoverflow.com/questions/1402238/applescript-print-word-documents 1 Applescript print word documents Milhous 2009-09-09T21:36:51Z 2009-09-09T22:02:34Z <p>Is there a way to print all of the Microsoft Word documents(.doc) in a folder using applescript?</p> http://stackoverflow.com/questions/1384947/java-find-txt-files-in-specified-folder/1384989#1384989 0 Answer by Milhous for Java: Find .txt files in specified folder Milhous 2009-09-06T06:01:31Z 2009-09-06T06:01:31Z <p>Here is my platform specific code(unix)</p> <pre><code>public static List&lt;File&gt; findFiles(String dir, String... names) { LinkedList&lt;String&gt; command = new LinkedList&lt;String&gt;(); command.add("/usr/bin/find"); command.add(dir); List&lt;File&gt; result = new LinkedList&lt;File&gt;(); if (names.length &gt; 1) { List&lt;String&gt; newNames = new LinkedList&lt;String&gt;(Arrays.asList(names)); String first = newNames.remove(0); command.add("-name"); command.add(first); for (String newName : newNames) { command.add("-or"); command.add("-name"); command.add(newName); } } else if (names.length &gt; 0) { command.add("-name"); command.add(names[0]); } try { ProcessBuilder pb = new ProcessBuilder(command); Process p = pb.start(); p.waitFor(); InputStream is = p.getInputStream(); InputStreamReader isr = new InputStreamReader(is); BufferedReader br = new BufferedReader(isr); String line; while ((line = br.readLine()) != null) { // System.err.println(line); result.add(new File(line)); } p.destroy(); } catch (Exception e) { e.printStackTrace(); } return result; } </code></pre> http://stackoverflow.com/questions/1374170/how-to-verify-a-jar-signed-with-jarsigner-programmatically/1374413#1374413 0 Answer by Milhous for How to verify a jar signed with jarsigner programmatically Milhous 2009-09-03T16:13:43Z 2009-09-03T16:13:43Z <p>You can use the jarsigner application to do this. In processbuilder (or Runtime.exec) you can run the command with these arguments</p> <pre><code> ProcessBulider pb = new ProcessBuilder("/usr/bin/jarsigner", "-verify", "-certs", f.getAbsolutePath()); </code></pre> <p>and if the output contians verified then the jar is signed</p> <pre><code>Process p = pb.start(); p.waitFor(); InputStream is = p.getInputStream(); InputStreamReader isr = new InputStreamReader(is); BufferedReader br = new BufferedReader(isr); String line; while ((line = br.readLine()) != null) { if(line.contains("verified"); ... </code></pre> <p>THere are more complicated things you can do when you have the output of the jarsigner code.</p> http://stackoverflow.com/questions/469932/java-openmpi 1 Java openmpi Milhous 2009-01-22T16:54:20Z 2009-08-30T08:00:01Z <p>Is there a current Java openmpi implementation. I have programmed in MPI a bit, and I enjoy programming in Java. I have seen <a href="http://aspen.ucs.indiana.edu/pss/HPJava/mpiJava.html" rel="nofollow">this</a> implementation in java, but it seems dated. Is there a more up to date java implementation that is being kept up?</p> http://stackoverflow.com/questions/1311732/draw-a-rectangle-in-an-itext-pdf 0 Draw a rectangle in an iText pdf Milhous 2009-08-21T12:49:49Z 2009-08-25T17:04:34Z <p>Is there a way in iText (the java version) to draw a rectangle into a pdf document?</p> http://stackoverflow.com/questions/1311732/draw-a-rectangle-in-an-itext-pdf/1329609#1329609 0 Answer by Milhous for Draw a rectangle in an iText pdf Milhous 2009-08-25T17:04:34Z 2009-08-25T17:04:34Z <p>Here is the solution. Thanks Dylan McClung.</p> <pre><code>cb.saveState(); cb.setColorStroke(Color.black); cb.rectangle(x,y,x1,y1); cb.stroke(); cb.saveState(); </code></pre> http://stackoverflow.com/questions/1311912/how-do-i-autoident-in-netbeans/1311927#1311927 0 Answer by Milhous for How do I autoident in Netbeans? Milhous 2009-08-21T13:25:07Z 2009-08-21T13:25:07Z <p>ctl-shift-f will do a format of all the code in the page.</p> http://stackoverflow.com/questions/1308137/string-split-question-using/1308640#1308640 0 Answer by Milhous for String split question using "*" Milhous 2009-08-20T20:31:21Z 2009-08-20T20:31:21Z <p>You can also use a <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/StringTokenizer.html" rel="nofollow">StringTokenizer</a>.</p> <pre><code> StringTokenizer st = new StringTokenizer("my*big*string*needs*parsing", "\*"); while (st.hasMoreTokens()) { System.out.println(st.nextToken()); } </code></pre> http://stackoverflow.com/questions/908748/how-do-i-sign-a-java-applet-for-use-in-a-browser/1220737#1220737 1 Answer by Milhous for How do I sign a Java applet for use in a browser? Milhous 2009-08-03T05:08:37Z 2009-08-03T05:08:37Z <p>Here is a way to sign your jars and then check to see that all the class files are signed with your keystore.</p> <pre><code>#!/bin/bash KEYSTORE=/home/user/NetBeansProjects/sign/keystore FILES=`find /home/user/NetBeansProjects/Project/dist/ -name "*.jar"` for f in $FILES; do echo password | /usr/bin/jarsigner -keystore $KEYSTORE -verbose $f myself; echo "Signed $f"; /usr/bin/jarsigner -verify -verbose -certs $f | grep X.509 | sort -u; done </code></pre> http://stackoverflow.com/questions/1219548/java-and-python-equivalent-of-phps-foreacharray-as-key-value/1219820#1219820 0 Answer by Milhous for java and python equivalent of php's foreach($array as $key => $value) Milhous 2009-08-02T20:50:26Z 2009-08-02T20:50:26Z <p>This is the modified code from o948 where you use a TreeMap instead of a HashMap. The Tree map will preserve the ordering of the keys by the key.</p> <pre><code>import java.util.*; class Foo { public static void main(String[] args) { Map&lt;String, String&gt; stateMap = new TreeMap&lt;String, String&gt;(); stateMap.put("ALABAMA", "AL"); stateMap.put("ALASKA", "AK"); // ... stateMap.put("WYOMING", "WY"); for (Map.Entry&lt;String, String&gt; state : stateMap.entrySet()) { System.out.printf( "The abbreviation for %s is %s%n", state.getKey(), state.getValue() ); } } } </code></pre> http://stackoverflow.com/questions/396245/add-a-dependency-in-maven 4 Add a dependency in Maven Milhous 2008-12-28T15:06:39Z 2009-07-30T22:34:26Z <p>How do I take a jar file that I have and add it to the dependency system in maven 2? I will be the maintainer of this dependency and my code needs this jar in the class path so that it will compile.</p> http://stackoverflow.com/questions/1206972/is-there-any-way-to-find-out-the-number-of-objects-that-gets-created/1207077#1207077 1 Answer by Milhous for Is there any way to find out the number of objects that gets created? Milhous 2009-07-30T14:44:43Z 2009-07-30T14:44:43Z <p>Netbeans and Eclipse both have good profilers that will give you this information. This works if you can run your project in one of these IDE's.</p> http://stackoverflow.com/questions/1194318/is-a-guid-a-good-salt-is-my-register-login-process-got-any-flaw/1194452#1194452 1 Answer by Milhous for is a GUID a good salt? is my register/login process got any flaw? Milhous 2009-07-28T14:24:42Z 2009-07-28T14:24:42Z <p>As Craig Stuntz noted, you should not be trying to do crypto on your own. The defition of salt is <a href="http://en.wikipedia.org/wiki/Salt%5F%28cryptography%29" rel="nofollow">here</a>. As it says, this should be random, and your GUID may not be random, and therefore you may have information leekage, and decreased security. That being said, it depends on how much security you want for your system. If this is not a large application, then you may be able to get away with your current system.</p> http://stackoverflow.com/questions/1186096/generic-method-in-java-determine-type -1 Generic method in Java, determine type Milhous 2009-07-27T01:42:25Z 2009-07-27T02:07:50Z <p>I would like to be able to detirmine the return type of my method call at runtime, but I can not seem to be able to get the Type of T.</p> <pre><code> public &lt;T&gt; T getT() { Object t = null; Class&lt;?&gt; c = t.getClass(); System.out.println(c.getName()); return (T) t; } </code></pre> <p>Is there any way to determine the Type of T at runtime in Java?</p> http://stackoverflow.com/questions/1090022/any-drawbacks-to-storing-an-integer-as-a-string-in-a-database/1090132#1090132 1 Answer by Milhous for Any drawbacks to storing an integer as a string in a database? Milhous 2009-07-07T02:42:17Z 2009-07-07T02:42:17Z <p>The space an integer would take up would me much less than a string. For example 2^32-1 = 4,294,967,295. This would take 10 bytes to store, where as the integer would take 4 bytes to store. For a single entry this is not very much space, but when you start in the millions... As many other posts suggest there are several other issues to consider, but this is one drawback of the string representation. </p> http://stackoverflow.com/questions/393948/object-persistence-strategy-for-desktop-application/393986#393986 1 Answer by Milhous for Object persistence strategy for desktop application Milhous 2008-12-26T16:54:31Z 2009-07-01T18:53:40Z <p><a href="http://xstream.codehaus.org/" rel="nofollow">XStream</a> works if you want to do simple xml reading and writing to a file. Xstream allows you to take any java object and write it to and read it from you file.</p> http://stackoverflow.com/questions/1812730/for-each-loop-help Comment by Milhous on for each loop help Milhous 2009-11-28T15:14:19Z 2009-11-28T15:14:19Z maybe some real code would be better. http://stackoverflow.com/questions/1794460/how-can-i-save-an-object-in-the-file/1794473#1794473 Comment by Milhous on how can I save an object in the file??? Milhous 2009-11-25T03:52:17Z 2009-11-25T03:52:17Z you could also us Xstream. http://stackoverflow.com/questions/1564037/netbeans-generated-code/1711716#1711716 Comment by Milhous on Netbeans generated code Milhous 2009-11-10T23:14:01Z 2009-11-10T23:14:01Z I will give that a try. http://stackoverflow.com/questions/1632027/how-to-add-different-cell-editors-for-one-column-in-jtable/1632348#1632348 Comment by Milhous on how to add different cell editors for one column in JTable? Milhous 2009-11-07T04:50:53Z 2009-11-07T04:50:53Z This was very helpful. http://stackoverflow.com/questions/1632365/get-battery-level-in-java/1632598#1632598 Comment by Milhous on Get battery level in Java Milhous 2009-10-27T19:17:50Z 2009-10-27T19:17:50Z The question asks about java, so is there a java interface to these API's ? http://stackoverflow.com/questions/1564037/netbeans-generated-code Comment by Milhous on Netbeans generated code Milhous 2009-10-14T13:01:30Z 2009-10-14T13:01:30Z The auto-generated code appears as normal code, after the formatting is applied in eclipse. http://stackoverflow.com/questions/1427051/how-to-make-svg-work-with-ie/1428526#1428526 Comment by Milhous on How to make SVG work with IE? Milhous 2009-09-15T17:31:16Z 2009-09-15T17:31:16Z Can you open a svg with this library? http://stackoverflow.com/questions/1384947/java-find-txt-files-in-specified-folder Comment by Milhous on Java: Find .txt files in specified folder Milhous 2009-09-06T05:51:59Z 2009-09-06T05:51:59Z Could be answer be platform specific? http://stackoverflow.com/questions/1027532/mac-os-java-version-problem-for-jar-files/1380569#1380569 Comment by Milhous on Mac OS java version problem for jar files Milhous 2009-09-04T17:32:30Z 2009-09-04T17:32:30Z I have used the jarBundler and it works pretty good. http://stackoverflow.com/questions/1312072/can-a-ip-address-in-the-private-range-used-as-a-public-address Comment by Milhous on Can a IP address in the private range used as a public address? Milhous 2009-08-21T13:56:39Z 2009-08-21T13:56:39Z It looks like whatismyip may be messing up your public ip address. The private ip addresses are not routeable on the public internet. http://stackoverflow.com/questions/1263184/cross-platform-file-compression Comment by Milhous on Cross platform file compression Milhous 2009-08-11T23:27:06Z 2009-08-11T23:27:06Z BTW, jar is actually zip, so all you have to do is rename the jar as a zip, and then you can uncompress it. http://stackoverflow.com/questions/1247841/how-can-i-split-a-mysql-table-into-multiple-tables-and-query-the-correct-arrea Comment by Milhous on How can I split a mysql table into multiple tables and query the correct arrea? Milhous 2009-08-08T03:06:44Z 2009-08-08T03:06:44Z Why are you wanting to split user id's? http://stackoverflow.com/questions/1186096/generic-method-in-java-determine-type/1186110#1186110 Comment by Milhous on Generic method in Java, determine type Milhous 2009-07-27T02:34:07Z 2009-07-27T02:34:07Z Well this seems to suck. http://stackoverflow.com/questions/1186096/generic-method-in-java-determine-type/1186140#1186140 Comment by Milhous on Generic method in Java, determine type Milhous 2009-07-27T02:33:32Z 2009-07-27T02:33:32Z In my current Design, I do exactcly that, but I end up having to pass the Class,when I would really like it to know the type given the return type. http://stackoverflow.com/questions/1186096/generic-method-in-java-determine-type/1186121#1186121 Comment by Milhous on Generic method in Java, determine type Milhous 2009-07-27T02:32:06Z 2009-07-27T02:32:06Z I am working on a database CRUD project, and it has many types, so this solution will not work :-(