Search Results

3
votes
3answers
2k views

Is there a fast, accurate Highlighter for Lucene?

I've been using the (Java) Highlighter for Lucene (in the Sandbox package) for some …
2
votes

Hibernate - maxElementsOnDisk from EHCache to TreeCache

This page seems to imply that the correct configuration element is: <attribute name="MaxCapacity">20000</attr …
6
votes

Calling function when program exits in java

You can add a shutdown hook to your application by doing the following: Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() { public void run() { // what you wan …
2
votes

Draining Standard Error in Java

Set the redirectErrorStream property on ProcessBuilder to send stderr output to stdout: ProcessBuilder builder = new ProcessBuilder(command); builder.redirectErrorStream(true); …
3
votes

What is the most useful multi-purpose open-source library for java?

The Google Collections API is pretty handy if you use lots of, well, Collections... …
5
votes

In a client-server application: How to send to the DB the user’s application password?

You could connect over a secure socket connection, or hash the password locally before sending it to the database (or better, both) - Ideally, the only time the password should exist in plain text …
2
votes

Detecting concurrent modifications?

Usually you get a ConcurrentModificationException if you're trying to remove an element from a list whilst it's being iterated through. The easiest way to test this is: List …
0
votes

How can I detect when an Exception’s been thrown globally in Java?

If you're using a web framework such as Spring then you can delegate in your web.xml to a page and then use the controller to send the em …
3
votes

Changing the default encoding for String(byte[])

You need to change the locale before launching the JVM; see: Java …
3
votes

csv api for java

We use JavaCSV, it works pretty well …
0
votes

Iterate with for loop or while loop?

Both are fine, but remember that sometimes access to the Iterator directly is useful (such as if you are removing elements that match a certain condition - you will get a ConcurrentModificationExce …
0
votes

Best J2EE server

We're a Jboss shop, but I think the plan is for us to move into Tomcat 6 (we're quite a way behind the Jboss curve as it stands). Jboss has some annoyances though! …
1
vote

Setting FetchMode in native Hibernate

You could try something like this: (code off the top of my head) Criteria crit = session.createCriteria(MyClass.class); crit.add(Restrictions.eq("id", myClassId)); crit.setFetchMode …
0
votes

java.lang.NoClassDefFoundError: com/hp/hpl/jena/shared/BadURIException on running servlet

It looks like you're missing the jar for Jena(?) which defines the BadURIException class. Is that jar included in your WEB-INF/lib directory as well? Have you tried looking at the unpacked war file …
2
votes

Is it possible to ‘see’ the object graph for garbage collection?

On a really basic level, you can use the commands jhat and jmap to read a heap file from a running Java process and then process it - it starts a small web server on a local port. It's not exactly …