Tagged Questions

11
votes
1answer
214 views

How does JDK 6 regexp compare with org.apache.regexp?

I'm interested in benchmarks and functionality? Is there are any reason to use Jakarta regexp?
5
votes
10answers
407 views

What part of Apache Commons saves you the most time?

Community wiki'ed already, folks. What part of Apache Commons saves you the most time? I'm curious to get together a list of these to browse and see what I don't know about, or what I should be ...
3
votes
1answer
520 views

How do I do this using guava?

Is there a way of achieving the below using Guava? //anything better than using Files.append() in a loop? org.apache.commons.io.FileUtils.writeLines(File file, Collection lines, String lineEnding); ...
1
vote
2answers
222 views

Remote test using jmeter triggers Connection refused error

I followed this step for configuration http://jmeter.apache.org/usermanual/remote-test.html The 2 machines are on same subnet. They can ping each other Windows firewall is turned off When I ...
1
vote
1answer
79 views

Sun FtpClient or Jakarta FtpClient

Its been years since I've had to ftp a file from java so I'm a bit out of touch with the possibilities. The documentation I've found lists two possibilities for my use. The standard Sun ftp ...
1
vote
1answer
103 views

Jakarta POI: change page format for Excel worksheet

Is there a way to change the page size and layout while creating the Excel document using Jakarta POI? The default one is A4-vertical, while I need A6-horizontal (landscape). I don't think that this ...
1
vote
6answers
146 views

Is there something in j2se or Jakarta commons thats converts a number to an array of digits?

I hate to code what is already available. I can't seem to find in Jakarta commons a method that would to the following: long x= 12345; int[] digits = toDigitsArray(x); //[1,2,3,4,5] So before I ...
1
vote
3answers
2k views

How to inject a Jakarta enums in a Spring application context?

I have a class which constructor takes a Jakarta enums. I'm trying to find how I can easily inject it via an Spring XML aplicationContext. For example : The enum : public class MyEnum extends ...
0
votes
1answer
59 views

Setting http timeout to jakarta HttpClient

I'm using the code below in WebHarvest configuration file to define timeout for http element in WebHarvest (Webharvest uses Jakarta HttpClient). But while I'm setting it to 20000 it takes about 40-50 ...
0
votes
0answers
51 views

How to using JK (isapi redirect) to redirect request using https protocol?

Currently, i'm using Jakarta Isapi Redirector to perform load balancing. I define my workers.properties content is below: # Define list of workers that will be used for mapping requests> # Node ...
0
votes
2answers
73 views

Why wont this simple Jakarta Regexp class run?

I am working on a project that requires me to understand the basics of the Apache Jakarta Regexp package for Java. I am somewhat unfamiliar with how to inlcude libraries in a java class. This is what ...
0
votes
2answers
253 views

Good alternate for Jakarta Taglibs?

We use Jakarta Taglibs to ouput some basic HTML form elements like selects. It appears this library has been retired.. are there any good alternates? Looking for something simple that will take a ...
0
votes
1answer
99 views

Jakarta Regexp 1.5 Backreferences?

Why does this match: String str = "099.9 102.2" + (char) 0x0D; RE re = new RE("^([0-9]{3}.[0-9]) ([0-9]{3}.[0-9])\r$"); System.out.println(re.match(str)); But this does not: String str = ...
0
votes
1answer
414 views

Configuration reload with Jakarta Commons Daemon

Using Jakarta Commons Daemon is it possible to have my Java application perform an action (reload a configuration) when a SIGHUP signal is sent to the jsvc process? If not - what are my other options ...
0
votes
2answers
949 views

Using generics with jakarta commons collections Buffer

This code compiles fine in Java <= 1.4. Java 1.6 bitches and moans with the warning: "The method add(Object) belongs to the raw type Collection. References to generic type Collection should be ...
0
votes
1answer
271 views

How do I set the format of toString methods with ToStringBuilder in commons-lang?

how do I configure the setting of the format for toString