Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

27
votes
13answers
21k views

Simple way to repeat a String in java

I'm looking for a simple commons method or operator that allows me to repeat some String n times. I know I could write this using a for loop, but I wish to avoid for loops whenever necessary and a ...
5
votes
1answer
340 views

Guice and general application configuration

For a monitoring software written in Java I consider using Google Guice as DI provider. The project needs to load its configuration from an external resource (file or database). The application is ...
4
votes
4answers
201 views

Key for two strings in a map?

I need to create a map that has a key of two strings. for example lets say key = Name & Target value = Permission(boolean) Do I need to create a special object or is there any build in tuple ...
4
votes
6answers
1k views

Text file into Java List<String> using Commons or Guava

What is the most elegant way to put each line of text (from the text file) into LinkedList (as String object) or some other collection, using Commons or Guava libraries.
3
votes
1answer
525 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); ...
2
votes
1answer
67 views

How do I access the JBoss data directory from inside an applicaiton?

I would like to upload files to my the server/default/data directory using a simple upload servlet and be able to access them from within my application, but I can't seem to find how to access it. I ...
2
votes
2answers
148 views

XMLConfiguration to String

I'm using the Apache Commons Configuration. How can I get directly a String of the XMLConfiguration without saving it to a file? Thank you very much.
2
votes
4answers
254 views

Text file into Java Set<String> using Commons or Guava

I would like to load each line in a file into HashSet collection. Is there a simple way to do this?
2
votes
1answer
314 views

How change charset in Apache Commons Email?

i'm using apache commons email to send email to my clients, but i have a client called 'Semana da Computação' (in portugues BR) but it goes 'Semana da Computação' . I try to modify my code, but it ...
1
vote
0answers
24 views

Validate a RSS Feed in a java program which uses org.apache.commons.feedparser for parsing Feeds

I our application we are using apache commons feedparser API, Which works well however i am intending to validate a Feed URL before parsing it. below are the three kind of exceptions that we are using ...
1
vote
1answer
73 views

On doing BufferedReader.readLine() : Unexpected end of ZILB input stream

I am trying to read one line at a time using bufferedReader like following BufferedReader.readLine() and I am getting the following stack trace. java.io.EOFException: Unexpected end of ZLIB ...
1
vote
6answers
179 views

Finding number of occurance of an element in a list

Is there a direct way to find out if the list contains duplicates? Direct API method in some third party utils? And if the list contains duplicates how many such duplicate elements exist in the list? ...
1
vote
1answer
165 views

What Python GUI platform should I use? [closed]

So I learned Python in this past year of university and have developed 1-2 proto-projects that I'd like to publish for the world to use, but I know people want a smooth, no-BS GUI interface, not some ...
1
vote
1answer
81 views

addProperty including blanks with XMLConfiguration

I'm using the Apache Commons Configuration. How can I add a property (String with blanks) to the configuration that I only get one single property? config.addProperty("date", "08.05.2011, 15:20"); ...
1
vote
1answer
60 views

Sending System.out to a file and Commons Logging

I am using commons logging: private static final Log LOG = LogFactory.getLog(MyClass.class); Why those logs doesn't go into the log file when I run sh Main 2>&1 > logfile I am using ...
1
vote
4answers
190 views

Third party lib to create jar files?

I've Goog'd but I can't find any third party library that will let you create a jar file programmatically. I amazed that even Apache commons-io doesn't seem to have such functionality. I'd rather not ...
1
vote
1answer
789 views

File Upload in GXT discriminates against certain file types

We are using GXT (EXT + GWT) and Apache commons file upload servlet utility. We have file uploads working but certain types are not uploaded, e.g., text files. Even if the text files have their ...
0
votes
1answer
14 views

Wikimedia Commons extension for mediawiki

I have installed mediawiki and now I need to make it work like http://commons.wikimedia.org/. Does anybody know which extension I need to download and install in order to make my mediawiki work like ...
0
votes
1answer
34 views

how to compare two [drupal-commons] db-dumps - in order to find out where the differences are?

I have installed a drupal-commons. During the install it shows lots of too-many-files-open-errors. (guess that this is a performance error). After installing the Commons and going to the site, my site ...
0
votes
1answer
54 views

Fancbox and Licensing

I want to sell my wordpress plugin, but it uses fancybox. I think it is licensed under the Creative Commons Attribution-NonCommercial 3.0. A friend told me that i should let the user download it ...
0
votes
0answers
44 views

apache commons vfs throws java.io.EOFException: Unexpected end of ZLIB input stream

I am currently working with apache commons vfs 2.0 for reading csv files inside Zip files. Everything works fine but sometimes during reading the csv file line by line it's throwing the follwoing ...
0
votes
0answers
29 views

How can I read form variables in multipart form with Apache Commons when FileSize exception thrown

I'm using Apache Commons to upload files. I realize that with the multipart form that getParameter calls return null and that I need to parse the request to get a FileItem list and then look for ...
0
votes
3answers
221 views

masking a creditcard number in java

I tried to mask the characters in a creditcard number string using character 'X'.I wrote two functions as below .The second function uses commons.lang.StringUtils class .I tried to find the time it ...
0
votes
0answers
5 views

using apache.commons.lang in springsource.org

There is a jar com.springsource.org.apache.commons.lang -2.4 jar. that spring halso provides apache.commons utilility classes but i dont know how to include in my java class. I have this jar in my ...
0
votes
1answer
98 views

How to get strings in parentheses into array with java

Lets say I have string like this: String q = "foo (one) bla (two) zoo key hola (tree) (four) five" I want to extract the strings in parentheses into string array so this would be true: ...
0
votes
0answers
33 views

How can I connect sub XML file(configuration file) using custom xml file

I have some problem about using the ConfigurationFactory. I made three XML file (configuration file) – parent.xml, a.xml, b.xml The structure is below : Parent.xml : < parents > < ...
0
votes
1answer
195 views

How to correctly import from apache commons in Java

First of all, forgive my poor programming skills. I recently downloaded commons math 2.2, which came with 3 .jar files: commons-math-2.2-javadoc.jar commons-math-2.2-sources.jar commons-math-2.2.jar ...
0
votes
1answer
38 views

Apache Commons Logging implementations diferences

I will try to use the Apache Commons Logging to logs in my system. I need some simple, just to keep up on the informations and errors, nothing too complex. I saw that there a lot of implementations ...
0
votes
0answers
462 views

FileUpload and Multipart POST in java using Http Commons and Fileupload

The following is my Multipart class which makes a request to the Servlet on the server which is goiing to save the image on the server: public class ClientMultipartFormPost { public static void ...
0
votes
1answer
232 views

Using Apache Commons Math to determine confidence intervals

I have a set of benchmark data for which I compute summary statistics using Apache Math Commons. Now I want to use the package to compute confidence intervals for the arithmetic means of e.g. running ...
0
votes
1answer
96 views

How to connect smtp port 25 in second time?

I am using Apache commons mail to send mail in my web application. My web application is hosted in Tomcat. When I try to send mail for the first time after server starts. I am able to send mail. But ...
0
votes
0answers
125 views

Commons SCXML issues

I have been considering Commons SCXML implementation. It seems quite comprehensive but I have some unclear point. In all the examples I have seen the states of the state machine are basically methods ...
0
votes
2answers
208 views

Apache Commons Hex Encoding Error

I'm trying to use org.apache.commons.codec.binary.Hex to encode and decode a String value: e.g.: Hex.encodeHex("10".getBytes()).toString(); However, this is not giving me a hexadecimal output, but ...
0
votes
1answer
193 views

How to test file transfer restarting code [setRestartOffset(offset) in Commons NET API]?

I wrote small FTP Client Applet which uploads files to FTP Server using Commons Net API. In my code I handled 'CopyStreamException' and trying to restart the same file transfer by setting the offset ...
0
votes
2answers
290 views

Commons VFS and IBM MVS System

I'm using Apache Commons VFS / SFTP, we are trying to download files from the IBM MVS system. The download part is all good, however, we can not open up the zipped files after downloading. Seems ...
0
votes
2answers
509 views

Apache Commons Configuration trigger event on property file change

I'm using Apache Commons Configuration library to store my app properties. I can monitor changes of property file using FileChangedReloadingStrategy and it works perfectly. What I would like to do ...
0
votes
1answer
145 views

Commons Digester add Singleton Object

Hi I Have a XML and I am using commons-digester1.8 to create a object of my bean. My bean contains a reference to another Bean which is singleton. Is there any way I can create/get the reference of ...