James Van Huis

1,122
Reputation
238 views

Registered User

Name James Van Huis
Member for 1 year
Seen 15 hours ago
Website
Location Chicago, IL
Age 29
19h
accepted Open Word document with cursor disabled
19h
answered Open Word document with cursor disabled
2d
accepted How to reference an external library in an Ant build and general Ant help?
Oct
30
comment Convert between URL and windows filename (Java)?
i.e. www.google.com/search?q=bad+urls, which would not be a valid windows filename (due to the question mark).
Oct
30
comment Convert between URL and windows filename (Java)?
I think he's talking about saving off the results of a web request by using the web URL as the filename. This runs into problems with characters such as '*' and '?', which are valid in a URL but invalid as part of a Windows file name.
Oct
28
awarded  Yearling
Sep
2
comment Is there a faster way to escape a string?
You still have a bug. The first replace statement (\\ -> \\\\) has no effect.
Aug
26
accepted Calling a JNI modal dialog disables taskbar icon.
Jul
17
answered Implementing a log viewer GUI with C# (or java)
Jul
14
answered nullobject for File in Java
Jul
14
comment indexOf Case Sensitive?
Beware of internationalization issues (i.e. the Turkish İ) when using toUpperCase. A more proper solution is to use str.toUpperCase(Locale.US).indexOf(...);
Jul
6
revised Writing a formula to a cell with OpenXLS
edited tags
Jul
1
accepted Aligning text and image in an SWT Button?
Jul
1
answered Aligning text and image in an SWT Button?
Jul
1
comment How can I write an Exception by myself?
Note: if you are using Eclipse, simply write 'throw new <CustomName>Exception', and then use the Autofix (Ctrl+1). This will create a new class for you which extends Exception, and contains the boilerplate code.
Jun
29
revised Strange Classpath, .NoClassDefFoundError errors
added 22 characters in body; added 5 characters in body
Jun
29
answered Strange Classpath, .NoClassDefFoundError errors
Jun
29
revised Determine Whether Daylight Savings Time (DST) is Active in Java for a Specified Date
added 391 characters in body
Jun
29
revised Determine Whether Daylight Savings Time (DST) is Active in Java for a Specified Date
added 3 characters in body
Jun
29
answered Determine Whether Daylight Savings Time (DST) is Active in Java for a Specified Date
Jun
29
accepted JFace question: How do I select all items in a ListSelectionDialog?
Jun
29
comment Should we use type cast for the object.toArray()???
note: you can also use 'c.toArray(new String [] {});'
Jun
26
comment JVM -XX:+StringCache argument?
@mmyers: It is probably not supported in OpenJDK. Sun states: "Options that are specified with -XX are not stable and are not recommended for casual use. These options are subject to change without notice."
Jun
25
answered JFace question: How do I select all items in a ListSelectionDialog?
Jun
25
answered Error trying to use import.jxl… statements.
Jun
9
awarded  Nice Answer
Jun
9
comment 09 is not recognized where as 9 is recognized
Ah, thanks. Fixed.
Jun
9
revised 09 is not recognized where as 9 is recognized
deleted 48 characters in body
Jun
9
comment What is the worst programming language you ever worked with?
Labview as well...
Jun
9
answered 09 is not recognized where as 9 is recognized
Jun
4
answered Re-Implement 3rd party TCP Java client
Jun
1
comment Getting the class name from a static method in Java
But then, refactoring the class name in your IDE will not work properly.
Jun
1
answered Getting the class name from a static method in Java