User Milhous - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T00:42:20Zhttp://stackoverflow.com/feeds/user/17712http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/376561/openid-java8OpenID JavaMilhous2008-12-18T00:39:54Z2009-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-copies1Postscript number of copiesMilhous2009-12-11T20:15:01Z2009-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#17945050Answer by Milhous for how can I save an object in the file???Milhous2009-11-25T03:54:41Z2009-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#17861222Answer by Milhous for importing a text fileMilhous2009-11-23T21:29:36Z2009-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#17809141Answer by Milhous for Java: Getting the properties of a class to construct a string representationMilhous2009-11-23T03:07:35Z2009-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-java3Linq for javaMilhous2008-12-06T20:23:58Z2009-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-code0Netbeans generated codeMilhous2009-10-14T03:00:32Z2009-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#17112290Answer by Milhous for Why Java language does not offer a way to declare getters and setters of a given "field" through annotations ?Milhous2009-11-10T21:13:38Z2009-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#17094230Answer by Milhous for How to auto-start an application after system boot up in Mac osMilhous2009-11-10T16:49:38Z2009-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#17093980Answer by Milhous for JDBC Connection and Statement ClassesMilhous2009-11-10T16:46:19Z2009-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<tStd_M_lt> 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<tShower_Base_Kit> 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-path0Fish Interactive Shell full pathMilhous2009-05-15T04:34:32Z2009-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#16151931Answer by Milhous for Should query languages have priority of operator OR higher than priority of AND ?Milhous2009-10-23T18:33:36Z2009-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-links1Find CorelDraw Web linksMilhous2008-10-21T18:58:25Z2009-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-project16Using both Eclipse and NetBeans on the same projectMilhous2008-10-06T13:34:39Z2009-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-documents1Applescript print word documentsMilhous2009-09-09T21:36:51Z2009-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#13849890Answer by Milhous for Java: Find .txt files in specified folderMilhous2009-09-06T06:01:31Z2009-09-06T06:01:31Z<p>Here is my platform specific code(unix)</p>
<pre><code>public static List<File> findFiles(String dir, String... names)
{
LinkedList<String> command = new LinkedList<String>();
command.add("/usr/bin/find");
command.add(dir);
List<File> result = new LinkedList<File>();
if (names.length > 1)
{
List<String> newNames = new LinkedList<String>(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 > 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#13744130Answer by Milhous for How to verify a jar signed with jarsigner programmaticallyMilhous2009-09-03T16:13:43Z2009-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-openmpi1Java openmpiMilhous2009-01-22T16:54:20Z2009-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-pdf0Draw a rectangle in an iText pdfMilhous2009-08-21T12:49:49Z2009-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#13296090Answer by Milhous for Draw a rectangle in an iText pdfMilhous2009-08-25T17:04:34Z2009-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#13119270Answer by Milhous for How do I autoident in Netbeans?Milhous2009-08-21T13:25:07Z2009-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#13086400Answer by Milhous for String split question using "*"Milhous2009-08-20T20:31:21Z2009-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#12207371Answer by Milhous for How do I sign a Java applet for use in a browser?Milhous2009-08-03T05:08:37Z2009-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#12198200Answer by Milhous for java and python equivalent of php's foreach($array as $key => $value)Milhous2009-08-02T20:50:26Z2009-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<String, String> stateMap = new TreeMap<String, String>();
stateMap.put("ALABAMA", "AL");
stateMap.put("ALASKA", "AK");
// ...
stateMap.put("WYOMING", "WY");
for (Map.Entry<String, String> 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-maven4Add a dependency in MavenMilhous2008-12-28T15:06:39Z2009-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#12070771Answer by Milhous for Is there any way to find out the number of objects that gets created?Milhous2009-07-30T14:44:43Z2009-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#11944521Answer by Milhous for is a GUID a good salt? is my register/login process got any flaw?Milhous2009-07-28T14:24:42Z2009-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-1Generic method in Java, determine typeMilhous2009-07-27T01:42:25Z2009-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 <T> T getT()
{
Object t = null;
Class<?> 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#10901321Answer by Milhous for Any drawbacks to storing an integer as a string in a database?Milhous2009-07-07T02:42:17Z2009-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#3939861Answer by Milhous for Object persistence strategy for desktop applicationMilhous2008-12-26T16:54:31Z2009-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-helpComment by Milhous on for each loop helpMilhous2009-11-28T15:14:19Z2009-11-28T15:14:19Zmaybe some real code would be better.http://stackoverflow.com/questions/1794460/how-can-i-save-an-object-in-the-file/1794473#1794473Comment by Milhous on how can I save an object in the file???Milhous2009-11-25T03:52:17Z2009-11-25T03:52:17Zyou could also us Xstream.http://stackoverflow.com/questions/1564037/netbeans-generated-code/1711716#1711716Comment by Milhous on Netbeans generated codeMilhous2009-11-10T23:14:01Z2009-11-10T23:14:01ZI will give that a try.http://stackoverflow.com/questions/1632027/how-to-add-different-cell-editors-for-one-column-in-jtable/1632348#1632348Comment by Milhous on how to add different cell editors for one column in JTable?Milhous2009-11-07T04:50:53Z2009-11-07T04:50:53ZThis was very helpful.http://stackoverflow.com/questions/1632365/get-battery-level-in-java/1632598#1632598Comment by Milhous on Get battery level in JavaMilhous2009-10-27T19:17:50Z2009-10-27T19:17:50ZThe question asks about java, so is there a java interface to these API's ?http://stackoverflow.com/questions/1564037/netbeans-generated-codeComment by Milhous on Netbeans generated codeMilhous2009-10-14T13:01:30Z2009-10-14T13:01:30ZThe 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#1428526Comment by Milhous on How to make SVG work with IE?Milhous2009-09-15T17:31:16Z2009-09-15T17:31:16ZCan you open a svg with this library?http://stackoverflow.com/questions/1384947/java-find-txt-files-in-specified-folderComment by Milhous on Java: Find .txt files in specified folderMilhous2009-09-06T05:51:59Z2009-09-06T05:51:59ZCould be answer be platform specific?http://stackoverflow.com/questions/1027532/mac-os-java-version-problem-for-jar-files/1380569#1380569Comment by Milhous on Mac OS java version problem for jar filesMilhous2009-09-04T17:32:30Z2009-09-04T17:32:30ZI 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-addressComment by Milhous on Can a IP address in the private range used as a public address?Milhous2009-08-21T13:56:39Z2009-08-21T13:56:39ZIt 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-compressionComment by Milhous on Cross platform file compressionMilhous2009-08-11T23:27:06Z2009-08-11T23:27:06ZBTW, 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-arreaComment by Milhous on How can I split a mysql table into multiple tables and query the correct arrea?Milhous2009-08-08T03:06:44Z2009-08-08T03:06:44ZWhy are you wanting to split user id's?http://stackoverflow.com/questions/1186096/generic-method-in-java-determine-type/1186110#1186110Comment by Milhous on Generic method in Java, determine typeMilhous2009-07-27T02:34:07Z2009-07-27T02:34:07ZWell this seems to suck.http://stackoverflow.com/questions/1186096/generic-method-in-java-determine-type/1186140#1186140Comment by Milhous on Generic method in Java, determine typeMilhous2009-07-27T02:33:32Z2009-07-27T02:33:32ZIn 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#1186121Comment by Milhous on Generic method in Java, determine typeMilhous2009-07-27T02:32:06Z2009-07-27T02:32:06ZI am working on a database CRUD project, and it has many types, so this solution will not work :-(