2
votes
Why would a “java.net.ConnectException: Connection timed out” exception occur when URL is up?
I'd recommend raising the connection timeout time before getting the output stream, like so:
urlConnection.setConnectTimeout(1000);
Where 1000 is in milliseconds ( …
0
votes
Sending an arbitrary Signal in Windows?
Sun warns against using classes in the com.sun hierarchy simply because they can (and do) arbitrarily change between versions and sometimes even between platforms.
…
0
votes
java client code for generating SOAP request from WSDL file
JAX-WS 2.0 is included with Java Standard Edition starting with Java 6. It's a good place to start. JAX …
3
votes
What is the proper way to store app’s conf data in Java?
Java has a library specifically for doing this in java.util.prefs.Preferences.
…
0
votes
Parameterized test case classes in JUnit 3.x
If this is Java 5 or higher, you might want to consider switching to JUnit 4, which has support for parameterized test cases built in.
…
1
vote
How can I replace the current Java process, like a unix-style exec?
As far as I know, there is no way to do this in Java.
I suppose you could work around it by using the Java …
4
votes
Java equivalent to app.config?
For WebApps, web.xml can be used to store application settings.
Other than that, you can use the Pro …
0
votes
What do you need to do Unit testing in Java with Eclipse?
JUnit 4 is actually really easy to use, as long as you're using a project that targets Java 5 or newer, and have added it to the project.
I mean, how much easier can you get than
…
1
vote
Rename file onto another in java
You're going to need to create two java.io.File objects: one for the new file, one for the old file.
Lets call these oldFile and newFile.
…
1
vote
Why doesn’t java’s assert statement allow you to specify a message?
As a side note, JUnit gives you a whole set of new assertion functions. Of course, they're intended for use in unit testing...
…
1
vote
WCF and Java
I don't know what all WCF contains, but JAX-WS (and its reference implementation Metro …
4
votes
Best way to read structured binary files with Java
To my knowledge, Java forces you to read a file as bytes rather than being able to block read. If you were serializing Java objects, it'd be a different story.
The other examples shown us …
1
vote
Dot Net and Java Culture Codes
That's strange, the last time I visited this page, someone had beaten me to posting the links to the Java references for Localization.
However, since their post is gone, here's what I was w …
3
votes
What do I need to write Java-based web applications and test them on my personal computer?
Lets see... you'll need:
A JDK. Preferably the Standard Edition, unless you plan on using GlassFish as a J …
3
votes
Convert to date
You may want to use Calendar to create your dates.
for (int i=2004; i<2009; i++) {
Calendar cal = Calendar.getInstance();
cal.clear();
// Calendar.JULY may be differe …
