The Apache Commons is a project of the Apache Software Foundation, formerly under the Jakarta Project. The purpose of the Commons is to provide reusable, open source Java software. The Commons is composed of three parts: proper, sandbox, and dormant.

learn more… | top users | synonyms

0
votes
2answers
30 views

which timezone is used by DateUtils?

I'm trying to use DateUtils from apache-commons3, but can't understand which timezone it relies on: Date date = DateUtils.truncate(date, Calendar.DATE); How does it know which timezone I'm in?
-2
votes
0answers
22 views

Java common.net java mail [closed]

I downloaded two package one commons.net and Java mail i was wondering if there is a book on these or a site when i can learn the functionality that these packages contain
2
votes
0answers
38 views
+150

How to make CommonsMultipartFile from absolute file path?

I'm creating an API for my application. In the GUI browser based application the file is uploaded via a form submission. So I simply do CommonsMultipartFile file = request.(myfile). However, the API ...
0
votes
0answers
14 views

Zend Deployment Error Commons libs not found

I am new at Zend Server, trying to deploy a PHP application developed in ScriptCase (a PHP tool) and deployed it into a Zend server. The deployment process of Scriptcase consist of making ...
0
votes
0answers
16 views

How do I Specify a Parser Key with Apache FTPClient?

As specified in the documentation, I should be able to specify my own FTPFileEntryParser when listing files using the Apache FTP Client. FTPListParseEngine engine = ...
1
vote
3answers
110 views

Render multi value hash map with single key and multiple values in JSP

I have the following MultiHashMap in the controller.java MultiHashMap multimap= new MultiHashMap(); List<SampleList> list1 = (List<SampleList>) ...
0
votes
0answers
25 views

Apache JXpath abstract-factory: error - Factory could not create an object for path

here is my code, public class Jxpath_Ex1 { public static void main(String[] args) { URL url = Jxpath_xml_parsing.class.getResource("MySample.xml"); Container container = new ...
1
vote
0answers
14 views

FTP guaranteed file delivery for Android

I'm using Apache commons Net library for FTP in my android app. and sometimes when using interrupted network or 2G network it doesn't send/download the file as expected. I know that i have to check ...
1
vote
1answer
50 views

Property file not reflecting the modified changes using Apache Commons Configuration

I am trying to explore Apache commons configuration to dynamically load the property file and do modification in the file and save it. I wrote a demo code for the same. Code Snippet package ...
0
votes
1answer
33 views

Apache common jxpath XML parse - XML URL is null

here is an example code which i have used to learn about JXPath xml parsing, import java.net.URL; import java.util.Iterator; import org.apache.commons.jxpath.Container; import ...
0
votes
1answer
34 views

How to use Apache Commons Validator for urls without protocol

Using Apache Commons Validator 1.4.0. Till now was using the GenericValidator.isUrl("http://google.com") which works fine with URLs which have protocol with them. It returns false in case protocol is ...
0
votes
0answers
21 views

FTP Apache Commons stalls at retrieveFile

I have a little test program i created to use later on and it simply connects to a server and retrieves a file if looks like this: import org.apache.commons.net.ftp.*; import java.io.*; import ...
3
votes
2answers
71 views

How to replace a placeholder in a String with a SimpleDateFormat Pattern

In a given String like this ".../uploads/${customer}/${dateTime('yyyyMMdd')}/report.pdf" I need to replace a customer and a yyyyMMdd timestamp. To replace the customer placeholder, I could use the ...
0
votes
1answer
45 views

Calculating Max with commons library

I use commons.math3 for calculating some statistical moments, like this: import org.apache.commons.math3.*; And in my code: double beatsdifa[] = new double[beatsdif.size()]; //fill array ...
1
vote
1answer
207 views

java.io.FileNotFoundException: /file/path.jpg open failed: ENOENT (No such file or directory)

I am trying to save an image to parse.com. I need to convert it to byte array. The way I have decided to try to do this is to use apache commons-io. It is not quite working properly. This is my code ...
2
votes
2answers
54 views

Adding file into existing Zip Archive

So I followed the block of code here: http://commons.apache.org/proper/commons-compress/examples.html, where is said to simply make a ZipArchiveEntry and then insert the data. As you can see by my ...
0
votes
1answer
31 views

FTP connection interruption Exception not thrown

I am trying to make a ftp downloader which would restart from the position where the file was lastly read. I will be storing some meta-data for this . But while testing i am kicking out the client and ...
0
votes
1answer
46 views

Saving a .jpg to byte[] android

This shouldn't be that hard, but I cannot figure this out. I need to save an image, on my end only, and build it dynamically so all my users will view these images. The tutorials on Parse.com are very ...
1
vote
1answer
25 views

Encoding to be used while reading the sql file using apache FIleutilities

I am reading the below line from an .sql file using Apache File Utilities. INSERT INTO tablename (MESSAGE) VALUE('transfer of £[%1] to the following [%2]:'); but after reading i get the below: ...
0
votes
1answer
67 views

How can I get Jsvc to find the DaemonLoader?

I have the commons-daemon-x.jar in the classpath. The Jsvc is successfully launching the Java VM. But jsvc is reporting that it cannot find the daemon loader class even though it is in the classpath. ...
0
votes
0answers
40 views

Can't delete a file from a read-only directory in Java using Apache Commons

How do I delete a file from a directory without deleting the directory itself in Java? I tried using the cleanDirectory method of the FileUtils class of the Apache Commons. But it won't delete the ...
2
votes
1answer
76 views

which one do you prefer for implementing imap client in java (java mail api or apache commons net)

i have to implement an imap client in java. which advantages has using apache commons net library? does it makes the implementation robust and more flexible? how do i have to handle return values, it ...
0
votes
0answers
24 views

Apache Commons FileAlterationMonitor - dealing with events falling through cracks

I am using the Apache Commons FileAlterationMonitor to identify changes to a directory tree, and performing operations when files are added. I have identified a fringe problem where if directories ...
0
votes
0answers
39 views

Is wildcard searching possible with Apache Commons VFS?

I'm just learning Apache Commons VFS. I'd like to search for a file in a certain directory, but I don't know the exact name of the file. I do, however, know a part of the name. To search for a file, ...
1
vote
1answer
27 views

Boilerplate ant/maven config for apache-commons style packaging

The Apache Commons family has a fairly standard packaging schema: 5 jars (classes, source, tests, tests-source and javadoc), an doc directory with HTML contents and a few text files (License, Readme): ...
1
vote
2answers
104 views

Find the highest value in a HashSet/ArrayList by a specific object attribute

I have a List of Car objects. Each car object has a type indicating whether its a sedan, suv, coupe, van or truck) along with other attributes. Assume my application ranks these in order listed below ...
0
votes
1answer
29 views

How to calculate correlation if one value is 0

For calculation the pearsons coefficient between two arrays I use the following : double[] arr1 = new double[4]; arr1[0] = 1; arr1[1] = 1; arr1[2] = 1; arr1[3] = 1; double[] ...
0
votes
2answers
53 views

Apache Common IO FileUtils Issue

I am trying to use the FileUtils.writeStringToFile() method of the Apache Commons IO. Every bit of documentation says that I can do this: FileUtils.writeStringToFile(File, String with data, boolean ...
1
vote
1answer
233 views

Spring MVC - Display Blob images from Database

Firstly, I am new to Spring MVC and I am really sorry if this seems like a duplicated question however I am struggling to find a break down guide/tutorial on how to display images on a JSP page after ...
0
votes
1answer
24 views

What can cause a GenericObjectPool to drop objects?

In the system I am currently working on, we are using an Apache Commons GenericObjectPool as our Oracle connection pool. We've noticed recently that instead of all connections being kept perpetually ...
1
vote
1answer
54 views

Commons Math - could not find class org.apache.commons

I have downloaded the binary Zip from here. I extracted the zip to a folder. Then I right clicked on libs folder in Eclipse. I Imported the *.jar file to the libs folder, and then I right clicked on ...
3
votes
1answer
86 views

Cleaner way to check if a string is ISO country of ISO language in Java

Suppose to have a two-characters String, which should represent the ISO 639 country or language name. You know, Locale class has two functions getISOLanguages and getISOCountries that return an array ...
0
votes
5answers
142 views

Effective way to build a list of tokens from multiple strings in Java

I'm looking for an efficient way to obtain a list of String tokens extracted from multiple Strings (e.g. with a whitespace separator). Example: String s1 = "My mom cook everyday"; String s2 = "I eat ...
0
votes
0answers
78 views

Connection timed out in OSGI bundle for FTP list function ( apache commons )

FTPClient ftpClient = new FTPClient(); ftpClient.connect(host, 21); ftpClient.login(user, pass); ftpClient.enterLocalPassiveMode(); ftpClient.setFileType(FTP.BINARY_FILE_TYPE); FTPFile[] subFiles = ...
2
votes
1answer
62 views

Calculating Skewness and kurtosis with apache commons

I have datapoints in a vector and I would like to calculate the skewness and kurtosis of the dataset. How do I go about this with apache commons? Vector<Double> mydata = new ...
1
vote
1answer
132 views

FTPClient.listFiles not working

I am trying to list all the files under a specific directory in a ftp server. FTPFile[] subFiles = ftpClient.listFiles("directory"); Although the directory is a valid one , but the code gets stuck ...
0
votes
3answers
189 views

NoClassDefFoundError: org/apache/commons/configuration/ConfigurationException

I have an app in which I need to parse configuration file and when run this program on server it gives the following trace: java.lang.NoClassDefFoundError: ...
2
votes
2answers
128 views

Why does this java mail arrive as plain text instead of html at recipient?

I have this code to send an email: public static void sendHtmlTextWithPlainTextAlternative(final String to, final String from, final String subject, final String plainText, final String ...
1
vote
0answers
38 views

Suggested configuration for CommonsPoolTargetSource? [closed]

I created a pool of JAX-WS clients for a web application. However, I'm not sure how should I set my configuration. Is there a suggested configuration for CommonsPoolTargetSource? (e.g. What is the ...
0
votes
1answer
236 views

DefaultParser in Apache Commons CLI

I wanted to try out the Apache Commons CLI, and figured a good place to start would be the 'usage' section on its web page. http://commons.apache.org/proper/commons-cli/usage.html Now, the example ...
2
votes
1answer
57 views

how to embed image in body using commons mail 1.3

here is my code which attach and send image but i want to load image form local drive and embed it to body of mail without attaching please help me i have searched still no solution. thanks import ...
1
vote
1answer
70 views

apache commons smtp change/remove Message-Id header

I'm using apache commons smtp library to send email using my gmail account. Everything works ok , however the Message-Id header is sent and I'm looking to remove it(not sent it). Digging the net I ...
0
votes
0answers
15 views

commons-dbpc and hibernate performance

I have an issue regarding the processing time of selects and updates using hibernate mapping. I'm using Java, Tomcat, Hibernate and apache commons-dbpc pool connector. I got a back-end service doing ...
0
votes
1answer
84 views

FTPSClient returns MalformedServerReplyException: cannot parse response code

I have an SFTP connection set up. I used WinCSP and Filezilla and the test server is working no problem. The java code is from the apache commons-net 2.0 and it gives me the unexpected error Code ...
0
votes
0answers
110 views

FTP connection login failed but can connect using Apache Commons Java

I have an SFTP connection ready with a working SFTP test server and correct credentials. I double checked that with IT. So, what I am trying to do is to upload a file via FTP to the SFTP server using ...
0
votes
1answer
223 views

prunsrv.exe Service not starting up

I am trying to install and start a service with prunsrv.exe for an application I am able to install the service alright but the service wont start up and gives me an error Also following is the ...
0
votes
1answer
84 views

Import a Web Service Client from a WSDL in Java

Im trying to use a web service. My project is Java 6, using Jboss 4.3.2.GA. I've tryied to import the web service using the New-> Web Service Client in Eclipse. Like this tutorial ...
0
votes
0answers
35 views

Get Latest Modified file from the FTP Server [duplicate]

Actually i was trying to use the idea of last modification time attribute of a file to check the latest file. But for this if i bring the file to our own host than i can check the last modification ...
2
votes
1answer
87 views

Changing JAR files in ColdFusion WEB-INF lib

Context I'm working on a project where we use JUNG libraries. My custom java code and the Jung libraries are all placed under the wwwroot/WEB-INF/lib. Note that, Certain classes of JUNG depend on ...
0
votes
0answers
164 views

Sending Byte Array as POST along with BasicNameValuePairs

I am trying to send data to a server as POST data. I have 3 fields, one is a String, another is a TIMEDATE and the last is a BLOB. I have been trying the following code but it doesn't seem to work. I ...

1 2 3 4 5 14