0
votes
Geographical position from Java mobile application?
I don't believe there is a general J2ME API for determining location.
I do know that BlackBerry has a specific API for retrieving not only the rough 'cell' location, but also a GPS API as w …
3
votes
How do you detect low memory situations within the java virtual machine?
I suggest that a better question is "Why is my application running out of memory?"
You may need to increase the memory available to the JVM at startup;
You may have a memory leak (objects t …
1
vote
What’s the best way to have stringTokenizer split up a line of text into predefined variables
Would a regular expression with capture groups work for you? You can certainly make parts of the expression optional.
An example line of data or three might be helpful.
…
0
votes
Are there some statistics on the most frequently used Java API functions?
It seems like it would be possible to automate a process where a list of J2SE or J2EE packages could be submitted to Koders.com, Google Code or another open source code search repository, count the …
1
vote
Java: Easiest way to replace strings with random strings
Yes, this can be done with regexes.
Probably not very prettily, not
without a loop or two
Yes, this can be implemented in Java.
See …
3
votes
How to convert string result of enum with overridden toString() back to enum?
The class overrides "toString()" - so, to get the reverse operation, you need to override valueOf() to translate the output of toString() back to the Enum values.
…
2
votes
Download xml.gz file with HttpsURLConnection
Verify the response code is 200
Check that connection.contentType to verify the content type is recognized
You may need to add a Content-Handler fo …
1
vote
Library that subverts java access control and lets me access private member variables ?
The java.lang.reflect package classes and methods allow this access, within certain limits.
See …
4
votes
Resize an image in Java - Any Open Source Library ?
Java Advanced Imaging is now open source, and provides the operations you need.
…
1
vote
What is the best way to parse a date in MM/DD/YY format and adjust it to the current / previous century?
Groovy script (easy enough to throw into java) demonstrating the point @bobince made about SimpleDateFormat.
java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat('MM/dd/y …
2
votes
How far do you take code coverage?
Reaching 100% code coverage with meaningful tests may not be worth the climb, and, as mentioned before, 100% Code Coverage doesn't necessarily mean that all the possible conditions in the …
0
votes
EMMA coverage tool not displaying line-by-line coverage
Could you post the portion of your build.xml that generates the EMMA reports? Sounds like a report sourcepath issue.
report sourcepath s …
0
votes
Would syntax for composition be a useful addition to Java?
There's also the difference between composition and aggregation to consider. How does the compiler know whether you mean 'is-a' or 'has-a' relationships?
Does the wh …
3
votes
How do I auto load a database jar in Groovy without using the -cp switch?
Summarized from Groovy Recipes, by Scott Davis, Automatically Including JARs in the ./groovy/lib Directory:
Create .groovy/lib in your login dir …
1
vote
HashSet.remove() and Iterator.remove() not working
Have you tried something like
boolean removed = allResults.remove(oldData)
if (!removed) // COMPLAIN BITTERLY!
In other words, remove the object from the Set and b …
