0
votes
1answer
34 views
Apache commons file upload and percentage progress in Google Apps
I am trying to use ProgressListener update call to obtain percentage completion of each file. Number of files are dynamically chosen and uploaded.
public class ProgressListener …
0
votes
0answers
12 views
Why do updating Google site with file upload throws File ItemSkippedException?
I have a media source object
MediaStreamSource ms = new MediaStreamSource(is, mediaType);
AttachmentEntry newAttachment = new AttachmentEntry();
and try to insert it an …
4
votes
7answers
172 views
What is the best List implementation for Large lists in java
Hi,
I have to create a large list of n elements (could be up to 100,000). each element in the list is an integer equivalent to the index of the list. After this I have to call C …
0
votes
1answer
17 views
Why ItemSkippedException?
I am trying to update content in Google sites and am reading the stream in exception VersionConflictException.
When I check the stream it is all fine and is completely loaded in P …
1
vote
2answers
29 views
upload file using inputstream in GAE java
I am trying to upload file to google sites and am obtaining the stream using apache commons file upload.
I get the input stream as under
InputStream is = fileItem.openStre …
0
votes
2answers
29 views
rmi error in google app
I dont get the error when I use the following line
FileItemIterator it = servletFileUpload.getItemIterator(request);
I get it when I use following line
List fileIte …
2
votes
3answers
51 views
Copy documentum content with apache IOUtils.copy() and setContent()
I want to copy the content from one object stored in one docbase to another object stored in another docbase. I do not want to create a file because I have more than 300 k files to …
3
votes
7answers
194 views
Reliable Java libs for general programming
There's always a balance when deciding whether to use a 3rd party library or write your own code. Writing your own takes time and will incur a maintenance cost. Using the 3rd party …
0
votes
2answers
39 views
ToStringBuilder append X appendSuper
Hi all...
in my classes when writing the toString() method I always use the ToStringBuilder from org.apache.commons
And when I'm extending other classes I use appendSuper() and t …
0
votes
2answers
35 views
org.apache.commons.lang.StringEscapeUtils in python
Hello,
is there any python module or code that implements the org.apache.commons.lang.StringEscapeUtils.escapeHtml ?
exactly the same as in http://commons.apache.org/lang/api/or …
1
vote
3answers
247 views
Preventing HttpClient 4 from following redirect
I'm connecting to my AppEngine application using the Apache HttpComponents library. In order to authenticate my users, I need to pass an authentication token along to the applicat …
0
votes
3answers
188 views
Logging Commons and Mapped Diagnostic Context
What have others done to get around the fact that the Commons Logging project (for both .NET and Java) do not support Mapped or Nested Diagnostic Contexts as far as I know?
-1
votes
3answers
112 views
Is the Apache Commons Collections framework faster than the JDK collections framework?
I have always been using the stock JDK collections in my code. Does the Apache Commons Collections framework run faster?
0
votes
1answer
27 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/ge …
0
votes
0answers
35 views
Validating Arrays using Struts Validator plugin / Commons Validator
I have a property in a Struts DynaValidatorActionForm that is an array of Integers:
<form-property name="ids" type="java.lang.Integer[]"/>
I'd like to perform a validat …
