4
votes
How do I discover which classpath entry provided a class?
The following snippet should work:
obj.getClass().getProtectionDomain().getCodeSource().getLocation().toString()
Note that you should add checks for null when call …
2
votes
How to properly send an HTTP message to the client
If you're using Tomcat, see the setting org.apache.coyote.USE_CUSTOM_STATUS_MSG_IN_HEADER:
http://to …
1
vote
How to check a string starts with numeric number?
This should work:
String s = "123foo";
Character.isDigit(s.charAt(0));
…
0
votes
Determine file being used by FileHandler
The easiest way is to put some kind of identifier in the file name itself, i.e. the pattern argument when you create the FileHandler. Since these are instances of the same application …
3
votes
Java Python Integration
If you can get your Python code to work in Jython, then you should be able to use that to call it from Java:
…
1
vote
Long list of if statements in Java
Just use a HashMap, as described here:
http://www.equivalence.co.uk/archives/99
…
1
vote
Looking for a generic Oauth library for scala, java or python
PyPI lists a few packages under OAuth, but I'm not sure how well they match your needs. …
2
votes
Visualizing Data in Java
Prefuse is a pretty nice library for Java, and even lets you publish animations in Flash using a layer called Flare:
prefuse visualization …
1
vote
How to use JarOutputStream to create a JAR file?
Here's some sample code for creating a JAR file using the JarOutputStream:
http://www.java …
1
vote
Single source documentation tool
Doxygen is documentation generator that's quite popular and can output documents in a …
