User jodonnell - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T05:51:01Zhttp://stackoverflow.com/feeds/user/4223http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/98610/how-can-i-get-eclipse-to-show-files9How can I get Eclipse to show .* files?jodonnell2008-09-19T01:23:28Z2009-11-29T02:12:56Z
<p>By default, Eclipse won't show my .htaccess file that I maintain in my project. It just shows an empty folder in the Package Viewer tree. How can I get it to show up? No obvious preferences.</p>
http://stackoverflow.com/questions/58106/can-you-configure-windows-to-open-jar-files-like-zip-files-without-a-3rd-party-to5Can you configure Windows to open JAR files like ZIP files without a 3rd party tool?jodonnell2008-09-12T01:28:54Z2009-11-26T01:08:49Z
<p>I'd like to be able to examine the contents of a JAR file without having to install Winzip or some other tool and without having to rename the file. Windows Explorer can open ZIP files just fine; is there some registry setting I can use to let it treat JARs like ZIPs?</p>
http://stackoverflow.com/questions/1670034/why-would-apcstore-return-false0Why would apc_store() return false?jodonnell2009-11-03T20:45:59Z2009-11-03T21:27:44Z
<p>The documentation on php.net is very spotty about causes of failure for APC writes. What kind of scenarios would cause a call to apc_store() to fail?</p>
<p>There's plenty of disk space available, and the failures are spotty. Sometimes the store operation will succeed and sometimes it'll fail. </p>
http://stackoverflow.com/questions/735136/ie-6-7-access-denied-trying-to-access-a-popup-window-document1IE 6/7 Access Denied trying to access a popup window.documentjodonnell2009-04-09T17:22:24Z2009-09-17T16:03:19Z
<p>I'm creating a popup window with no URL source using window.open(). I don't give it a URL because soon I'll want to post a form to it. However, in the meantime I'd like to display a short "Now loading..." message so the user isn't looking at a blank page for the 2-3 seconds it'll take the form post to go through.</p>
<p>I tried adding Javascript that just writes to the popup window's document. That worked great in Firefox and IE 8, but failed with an Access Denied message in IE 6 and 7. Anyone know of a way around this? I would love to be able to a) hard-code some HTML into window.open(), b) learn how to update the popup's DOM in this situation, or c) hear about anything anyone can think of.</p>
<p>Below is the code I'm using to spawn the window:</p>
<pre><code> var wref = window.open("", winName, "toolbar=1,resizable=1,menubar=1,location=1,status=1,scrollbars=1,width=800,height=600");
if (wref != null) {
try {wref.opener = self;} catch (exc) {}
// while we wait for the handoff form post to go through, display a simple wait message
$j(wref.document.body).html('Now loading &#133;'); // EPIC FAIL
wref.focus();
</code></pre>
http://stackoverflow.com/questions/1070641/is-there-an-easy-way-to-programmatically-list-all-the-message-ids-in-a-mo-file0Is there an easy way to programmatically list all the message IDs in a .MO file?jodonnell2009-07-01T18:31:52Z2009-07-01T19:37:53Z
<p>I have a big ol' .po file containing all the user-facing strings I need for my PHP app. I'd like to know if there's a PHP function I can use to get a list of all the msgid strings stored in the .po or the .mo. </p>
<p>I didn't see a published PHP function that does this. Anyone know of something similar, or will I have to manually parse my .po file myself?</p>
<p>This is what I'd optimally like to see:</p>
<pre><code>$msgids = magic_gettext_keys_function('mydomain');
foreach ($msgids as $msgid) {
do_something_awesome($msgid);
}
</code></pre>
http://stackoverflow.com/questions/1070641/is-there-an-easy-way-to-programmatically-list-all-the-message-ids-in-a-mo-file/1070937#10709370Answer by jodonnell for Is there an easy way to programmatically list all the message IDs in a .MO file?jodonnell2009-07-01T19:37:53Z2009-07-01T19:37:53Z<p>Not having received any answers yet, I'm assuming there is no API call to do it for me. However, it's almost trivial to extract the msgid strings from the .po file instead:</p>
<pre><code>$path = $GLOBALS['LOCALE_DIR'] . '/en/LC_MESSAGES/mydomain.po';
$poSrc = file_get_contents($path);
preg_match_all('/msgid\s+\"([^\"]*)\"/', $poSrc, $matches);
$msgids = $matches[1];
foreach ($msgids as $msgid) {
do_something_awesome($msgid);
}
</code></pre>
http://stackoverflow.com/questions/44824/is-jini-at-all-active-anymore2Is JINI at all active anymore?jodonnell2008-09-04T21:22:03Z2009-06-25T03:20:47Z
<p>Everyone I talk to who knows (knew) about it claims it was the greatest thing since sliced bread. Why did it fail? Or, if it didn't fail, who's using it now?</p>
http://stackoverflow.com/questions/875800/executing-java-5-code-with-java-6/875806#8758061Answer by jodonnell for Executing Java 5 Code With Java 6jodonnell2009-05-18T00:10:10Z2009-05-18T00:10:10Z<p>Sure, that should work with no trouble at all. Why, are you having a problem? Be more specific.</p>
http://stackoverflow.com/questions/601133/trying-to-get-a-handle-on-web-services/601145#6011451Answer by jodonnell for Trying to get a handle on Web Services?jodonnell2009-03-02T03:01:49Z2009-03-02T03:06:59Z<p>That's a very broad question. At a high level, SOAP refers to the XML protocol of the messages that travel back and forth. WSDL is another XML protocol that defines the format of the SOAP messages (very useful for tools that translate SOAP requests and responses for you). Typically a SOAP service endpoint will also have a way to access the static WSDL document about that service (e.g. if a service is hosted at <a href="http://myservice.com/services/MyService" rel="nofollow">http://myservice.com/services/MyService</a>, the WSDL will usually be served from <a href="http://myservice.com/services/MyService?WSDL" rel="nofollow">http://myservice.com/services/MyService?WSDL</a> in most implementations). UDDI is yet another XML protocol that describes queries to a registry asking for information about SOAP services stored there.</p>
<p>Learn SOAP and WSDL first. UDDI is not all that widely used (although getting more so slowly). JAXR is the Java API around UDDI, which means that you probably should never need to write a raw UDDI query yourself.</p>
<p>JAXP is just a Java XML parser API. It can be used for lots of things, not just SOAP and WSDL. <a href="http://ws.apache.org/axis2" rel="nofollow">Apache Axis</a> is a good Java SOAP client tool, and <a href="http://sourceforge.net/projects/wsdl4j" rel="nofollow">wsdl4j</a> is a good WSDL parsing tool, although Axis will also autogenerate SOAP requests and responses from Java objects for you by parsing WSDL. Optimally, you should never need to parse a WSDL document yourself, but you often have to in practice when the tool doesn't quite do what you want.</p>
http://stackoverflow.com/questions/60764/how-should-i-load-jars-dynamically-at-runtime/60775#607756Answer by jodonnell for How should I load Jars dynamically at runtime?jodonnell2008-09-13T19:04:16Z2009-01-23T02:37:54Z<p>The reason it's hard is security. Classloaders are meant to be immutable; you shouldn't be able to willy-nilly add classes to it at runtime. I'm actually very surprised that works with the system classloader. Here's how you do it making your own child classloader:</p>
<pre><code>URLClassLoader child = new URLClassLoader (myJar.toURL(), this.getClass().getClassLoader());
Class classToLoad = Class.forName ("com.MyClass", true, child);
Method method = classToLoad.getDeclaredMethod ("myMethod");
Object instance = classToLoad.newInstance ();
Object result = method.invoke (instance);
</code></pre>
<p>Painful, but there it is.</p>
http://stackoverflow.com/questions/367257/automatically-reformatting-inherited-php-spaghetti-code/367274#3672745Answer by jodonnell for Automatically reformatting inherited PHP spaghetti codejodonnell2008-12-15T01:33:39Z2008-12-15T01:38:54Z<p>You can do that with <a href="http://netbeans.org" rel="nofollow">Netbeans</a> or with <a href="http://www.eclipse.org/pdt/" rel="nofollow">Eclipse PDT</a>, both excellent PHP editors. There's a Format Code option in each, which will reformat a selected file according to your code style preferences. There may be an option to format code in bulk as well.</p>
<p>I do recommend that if you do this, do the format and immediately check the code back in with a big fat "REFORMATTING!" comment. Trying to mix in other bug fixes with the reformat makes for nasty-looking diff files to try to decipher down the road.</p>
http://stackoverflow.com/questions/321787/using-java-to-encrypt-integers/321803#32180311Answer by jodonnell for Using java to encrypt integersjodonnell2008-11-26T19:10:17Z2008-11-26T19:10:17Z<p>You can turn ints into a byte[] using a DataOutputStream, like this:</p>
<pre><code>ByteArrayOutputStream baos = new ByteArrayOutputStream ();
DataOutputStream dos = new DataOutputStream (baos);
dos.writeInt (i);
byte[] data = baos.toByteArray();
// do encryption
</code></pre>
<p>Then to decrypt it later:</p>
<pre><code>byte[] decrypted = decrypt (data);
ByteArrayInputStream bais = new ByteArrayInputStream (data);
DataInputStream dis = new DataInputStream (bais);
int j = dis.readInt();
</code></pre>
http://stackoverflow.com/questions/270197/java-in-eclipse-where-do-i-put-the-images-on-the-filesystem-that-i-want-to-loa/270210#2702102Answer by jodonnell for Java in Eclipse: Where do I put the images (on the filesystem) that I want to load into an ImageIconjodonnell2008-11-06T20:45:58Z2008-11-06T20:45:58Z<p>You can either put them in the src folder alongside your classes, or you can create a new source folder for the purpose (usually called <em>resources</em>), although you'll locate them identically from code.</p>
<p>Then you get at them using getResource ("/com/x/y/foo.png").</p>
http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199675#19967521Answer by jodonnell for Most Influential CS Class You've Takenjodonnell2008-10-14T01:07:45Z2008-10-14T01:07:45Z<p>Compilers. It really opened my eyes to the intricacies of how programs are made.</p>
http://stackoverflow.com/questions/44760/eclipse-share-project-by-hand2Eclipse "Share Project" by hand?jodonnell2008-09-04T20:54:41Z2008-10-11T13:06:56Z
<p>What actually happens to the file system when you do a Subclipse Share Project on an Eclipse project that was externally checked out from Subversion? All the .svn folders are already in place. I get an error when I try to Share Project the right way, and I'd rather not delete and re-checkout the projects from the SVN Repository browser.</p>
http://stackoverflow.com/questions/135628/whats-the-difference-between-a-midlet-and-a-corelet0What's the difference between a midlet and a corelet?jodonnell2008-09-25T19:57:51Z2008-09-25T21:22:35Z
<p>It's my understanding that a corelet is a Motorola-ism, but does anyone know what the difference is? Do corelets have certain abilities that midlets don't?</p>
http://stackoverflow.com/questions/108726/what-types-of-requirements-add-the-most-value/108752#1087520Answer by jodonnell for What types of requirements add the most value?jodonnell2008-09-20T17:05:33Z2008-09-20T17:05:33Z<p>Just give me some functional specifications that describe what the thing needs to do, in as much detail as possible. Wireframes are very helpful, much more so than UML diagrams. Just don't tell me how to design the thing behind the scenes.</p>
http://stackoverflow.com/questions/108728/suggestions-for-implementation-of-a-command-line-interface/108741#1087410Answer by jodonnell for Suggestions for implementation of a command line interfacejodonnell2008-09-20T17:02:29Z2008-09-20T17:02:29Z<p>If you use one of the standard tools for generating command line interfaces, like getopts, then you'll conform automatically.</p>
http://stackoverflow.com/questions/49824/java-python12Java -> Python?jodonnell2008-09-08T14:36:24Z2008-09-19T17:16:31Z
<p>Besides the dynamic nature of Python (and the syntax), what are some of the major features of the Python language that Java doesn't have, and vice versa?</p>
http://stackoverflow.com/questions/102167/do-you-have-unit-testing-in-your-projects/102208#1022082Answer by jodonnell for Do you have unit testing in your projects?jodonnell2008-09-19T14:21:14Z2008-09-19T14:21:14Z<p>I demand it. I don't require complete code coverage (I trust that your getters and setters work properly, and that dialogs pop up when you click a button), but for tricky algorithmic work it's absolutely essential.</p>
http://stackoverflow.com/questions/92781/how-do-i-present-text-vertically-in-a-jlabel-java-1-6/92805#928052Answer by jodonnell for How do I present text vertically in a JLabel ? (Java 1.6)jodonnell2008-09-18T14:02:56Z2008-09-18T14:02:56Z<p>You can do it by messing with the paint command, sort of like this:</p>
<pre><code>public class JVertLabel extends JComponent{
private String text;
public JVertLabel(String s){
text = s;
}
public void paintComponent(Graphics g){
super.paintComponent(g);
Graphics2D g2d = (Graphics2D)g;
g2d.rotate(Math.toRadians(270.0));
g2d.drawString(text, 0, 0);
}
}
</code></pre>
http://stackoverflow.com/questions/92456/using-openssl-encryption-with-java/92547#925470Answer by jodonnell for Using openssl encryption with Javajodonnell2008-09-18T13:32:05Z2008-09-18T13:32:05Z<p>The algorithms should match; if you're getting different results it may have to do with the way you're handling the keys and the text. Also keep in mind that Java characters are 2 bytes long, which C++ chars are 1 byte, so that may have something to do with it.</p>
http://stackoverflow.com/questions/39391/does-new-url-openconnection-necessarily-imply-a-post1Does new URL(...).openConnection() necessarily imply a POST?jodonnell2008-09-02T12:37:27Z2008-09-17T07:47:25Z
<p>If I create an HTTP java.net.URL and then call openConnection() on it, does it necessarily imply that an HTTP post is going to happen? I know that openStream() implies a GET. If so, how do you perform one of the other HTTP verbs without having to work with the raw socket layer?</p>
http://stackoverflow.com/questions/75479/eclipse-rcp-app-fails-to-start/75699#756992Answer by jodonnell for Eclipse RCP app fails to startjodonnell2008-09-16T18:56:20Z2008-09-16T18:56:20Z<p>I wasn't able to locate the runtime/.metadata folder, but <a href="http://www.eclipsezone.com/eclipse/forums/t99010.rhtml" rel="nofollow">this very helpful post</a> directed me to add -consoleLog and -noExit to my runtime arguments, which dumped the errors to the console. Configuration problems.</p>
http://stackoverflow.com/questions/75479/eclipse-rcp-app-fails-to-start1Eclipse RCP app fails to startjodonnell2008-09-16T18:30:24Z2008-09-16T18:56:20Z
<p>I have an Eclipse RCP app running on Java 6. When I try to run the product configuration from within Eclipse, it silently terminates almost immediately. No error is reported in the console. I've tried setting breakpoints in the IApplication and in the Activator, and neither are reached.</p>
<p>I know I don't have much specific information here, but can anyone give me any pointers on where I might start looking to diagnose the problem? </p>
http://stackoverflow.com/questions/75102/best-java-book-you-have-read-so-far/75137#751371Answer by jodonnell for Best Java book you have read so farjodonnell2008-09-16T18:01:08Z2008-09-16T18:01:08Z<p><a href="http://www.filthyrichclients.com/" rel="nofollow">Filthy Rich Clients</a>, by Chet Haase and Romain Guy. Those guys are Swing ninjas.</p>
http://stackoverflow.com/questions/74674/how-to-do-i-check-cpu-and-memory-usage-in-java/74718#747184Answer by jodonnell for How to do I check CPU and Memory Usage in Java?jodonnell2008-09-16T17:18:42Z2008-09-16T17:18:42Z<p><a href="http://stackoverflow.com/questions/25552/using-java-to-get-os-level-system-information">This question</a> has some good info you should find useful.</p>
http://stackoverflow.com/questions/74641/modify-an-xml-files-in-a-jar-file-with-java/74702#747021Answer by jodonnell for Modify an xml files in a jar file with Javajodonnell2008-09-16T17:16:41Z2008-09-16T17:16:41Z<p>Sure:</p>
<pre><code>File tmp = new File ("tmp");
tmp.mkdirs();
Process unjar = new ProcessBuilder ("jar", "-xf", "myjar.jar", tmp.getName ()).start();
unjar.waitFor();
// TODO read and update persistence.xml
Process jar = new ProcessBuilder ("jar", "-cf", "myjar.jar", tmp.getName()).start();
jar.waitFor();
</code></pre>
http://stackoverflow.com/questions/74248/in-jstl-jsp-given-a-java-util-date-how-do-i-find-the-next-day/74582#745822Answer by jodonnell for In JSTL/JSP, given a java.util.Date, how do I find the next day?jodonnell2008-09-16T17:03:13Z2008-09-16T17:03:13Z<p>You have to either use a scriptlet or write your own tag. For the record, using Calendar would look like this:</p>
<pre><code>Calendar cal = Calendar.getInstance();
cal.setTime (date);
cal.add (Calendar.DATE, 1);
date = cal.getTime ();
</code></pre>
<p>Truly horrible.</p>
http://stackoverflow.com/questions/71692/your-experience-with-modular-web-sites-in-java/71807#718071Answer by jodonnell for Your experience with "modular" web sites in Java?jodonnell2008-09-16T12:45:16Z2008-09-16T12:45:16Z<p>I'm a big fan of <a href="http://code.google.com/webtoolkit/" rel="nofollow">GWT</a>. It lets you write your components as normal Java classes and then you can insert them into your pages at will. The whole thing ends up being compiled to Javascript.</p>
<p>Here's an example:</p>
<pre><code>public class MyApplication implements EntryPoint, HistoryListener
{
static final String INIT_STATE = "status";
/**
* This is the entry point method. Instantiates the home page.
*/
public void onModuleLoad ()
{
RootPanel.get ().setStyleName ("root");
initHistorySupport ();
}
private void initHistorySupport ()
{
History.addHistoryListener (this);
// check to see if there are any tokens passed at startup via the browser’s URI
String token = History.getToken ();
if (token.length () == 0)
{
onHistoryChanged (INIT_STATE);
}
else
{
onHistoryChanged (token);
}
}
/**
* Fired when the user clicks the browser's 'back' or 'forward' buttons.
*
* @param historyToken the token representing the current history state
*/
public void onHistoryChanged (String historyToken)
{
RootPanel.get ().clear ();
Page page;
if (Page1.TOKEN.equalsIgnoreCase (historyToken))
{
page = new Page1 ();
}
else if (Page2.TOKEN.equalsIgnoreCase (historyToken))
{
page = new Page2 ();
}
else if (Page3.TOKEN.equalsIgnoreCase (historyToken))
{
page = new Page3 ();
}
RootPanel.get ().add (page);
}
}
</code></pre>
http://stackoverflow.com/questions/46642/does-anyone-here-have-a-favorite-memory-profiling-memory-leak-tool-they-like-to-u/46659#46659Comment by jodonnell on Does anyone here have a favorite memory profiling/memory leak tool they like to use for their java webapps?jodonnell2009-02-04T01:37:43Z2009-02-04T01:37:43ZI don't know what they are. I've never used the Netbeans profiler, but I've heard raves about it.http://stackoverflow.com/questions/271506/why-system-setproperty-cannot-change-the-classpath-at-run-time/271522#271522Comment by jodonnell on Why System.setProperty() cannot change the classpath at run time !jodonnell2008-11-07T13:31:27Z2008-11-07T13:31:27ZYeah, the java.class.path system property is more of an informational courtesy to the developer. As with all properties, you're allowed to change it via setProperty(), but doing so does nothing more than altering a String in a map.http://stackoverflow.com/questions/135628/whats-the-difference-between-a-midlet-and-a-corelet/136236#136236Comment by jodonnell on What's the difference between a midlet and a corelet?jodonnell2008-09-26T01:33:17Z2008-09-26T01:33:17ZAh, hence the "core" part of the name. Thanks!http://stackoverflow.com/questions/98610/how-can-i-get-eclipse-to-show-files/98634#98634Comment by jodonnell on How can I get Eclipse to show .* files?jodonnell2008-09-19T01:36:10Z2008-09-19T01:36:10ZNailed it, thanks.http://stackoverflow.com/questions/75479/eclipse-rcp-app-fails-to-start/75503#75503Comment by jodonnell on Eclipse RCP app fails to startjodonnell2008-09-16T18:56:31Z2008-09-16T18:56:31ZThat was it. Thanks.http://stackoverflow.com/questions/68298/good-java-practices-in-ubuntu/68319#68319Comment by jodonnell on Good Java Practices in Ubuntujodonnell2008-09-16T00:48:54Z2008-09-16T00:48:54ZIn college I used Emacs, but that was because it was 1997 and I had to.http://stackoverflow.com/questions/61320/svn-plugins-for-eclipse-subclipse-vs-subversive/61327#61327Comment by jodonnell on SVN plugins for Eclipse - Subclipse vs. Subversivejodonnell2008-09-15T00:19:43Z2008-09-15T00:19:43ZNo, Subclipse keeps working in later versions. For earlier versions, it's your only choice.http://stackoverflow.com/questions/60269/how-to-implement-draggable-tab-using-java-swing/60279#60279Comment by jodonnell on How to implement draggable tab using Java Swing?jodonnell2008-09-13T02:56:00Z2008-09-13T02:56:00ZDone. You're right, good to cite the source.http://stackoverflow.com/questions/59392/best-way-to-migrate-from-vss-to-subversion/59400#59400Comment by jodonnell on Best way to migrate from VSS to Subversion?jodonnell2008-09-12T16:34:55Z2008-09-12T16:34:55ZMake sure you clear away whatever crufty files VSS leaves in your checkout before importing into SVN, and also make sure all the generated files are gone as well.http://stackoverflow.com/questions/59425/how-do-i-find-records-added-to-my-database-table-in-the-past-24-hours/59437#59437Comment by jodonnell on How do I find records added to my database table in the past 24 hours?jodonnell2008-09-12T16:33:00Z2008-09-12T16:33:00ZEvery database has its own function for getting the current date, unfortunately.http://stackoverflow.com/questions/44760/eclipse-share-project-by-hand/47127#47127Comment by jodonnell on Eclipse "Share Project" by hand?jodonnell2008-09-12T16:32:07Z2008-09-12T16:32:07ZGood call. That worked fine.http://stackoverflow.com/questions/59195/how-are-mocks-meant-to-be-usedComment by jodonnell on How are Mocks meant to be used?jodonnell2008-09-12T15:41:32Z2008-09-12T15:41:32ZIt is pretty tedious, but you should be reusing your mock setup code just like you would production code. That will ease the pain somewhat.http://stackoverflow.com/questions/57409/i-dont-get-the-concept-of-visual-studio-projects-and-solutions/57411#57411Comment by jodonnell on I don't get the concept of Visual Studio Projects and Solutions.jodonnell2008-09-12T15:39:40Z2008-09-12T15:39:40ZYou can abuse Visual Studio in the same way. http://stackoverflow.com/questions/59195/how-are-mocks-meant-to-be-used/59244#59244Comment by jodonnell on How are Mocks meant to be used?jodonnell2008-09-12T15:18:46Z2008-09-12T15:18:46ZThis the difference between unit tests and integration tests. You need both. I shouldn't need a database to test how my code reacts to an incoming record set, but I do need to also test that my SQL brings back the right result.http://stackoverflow.com/questions/59107/can-i-convert-the-following-code-to-use-generics/59119#59119Comment by jodonnell on Can I convert the following code to use generics?jodonnell2008-09-12T14:31:49Z2008-09-12T14:31:49ZThis trips up everyone.