Apache Commons IO is a library of utilities to assist with developing IO functionality.
1
vote
1answer
139 views
Error when I include custom jars in lib directory - play framework 2.0
I am getting this error on any POST request when I include my set of unmanaged jars in the lib directory. If I remove the lib directory, everything works fine. If it's there, I get this error.. Any ...
0
votes
2answers
126 views
Apache Commons File Upload-getting correpted file after upload
I successfully uploaded a text file (say Another.java) using the following code, but it gives me an error while trying to open the uploaded file. Thanks in advance.
fileUpload.jsp
<form ...
0
votes
1answer
63 views
RegexFileFilter behaves differently when running in jboss 7
I need to sort files based on their name and extension. I use apache commons-io RegexFileFilter for that. The filename pattern is something like this: "filename.xml.20130101200" or ...
0
votes
0answers
339 views
java.util.zip.ZipException: invalid stored block lengths
I am trying to read a ZipArchiveEntry to String. I have the below code and i run into exception
My code is as below
StringWriter writer = new StringWriter();
...
0
votes
3answers
135 views
Zip the root folder content without having the root at zip file
I have the following folder Structure:
RootFolder
|
|
| -->F1-->F1.1-->t1.txt,t2.txt
-->F2-->F2.2-->t3.txt
I have succeed,using the following code,to get the following zip file:
result.zip--> ...
2
votes
1answer
166 views
commons io 403 for URL but httpclient is ok
commons io code :
String resultURL = String.format(GOOGLE_RECOGNIZER_URL, URLEncoder.encode("hello", "UTF-8"), "en-US");
URI uri = new URI(resultURL);
byte[] resultIO = IOUtils.toByteArray(uri);
I ...
0
votes
0answers
45 views
Commons IO DirectoryWalker - How to make it return relative path?
In handleFile, DirectoryWalker returns an absolute path.
Is there any way to make it return a path relative to dirToScan?
new DirectoryWalker( null, new SuffixFileFilter(".texy"), -1){
...
3
votes
3answers
532 views
Is it safe to use Apache commons-io IOUtils.closeQuietly?
Is this code
BufferedWriter bw = new BufferedWriter(new FileWriter("test.txt"));
try {
bw.write("test");
} finally {
IOUtils.closeQuietly(bw);
}
safe or not? As far ...
0
votes
1answer
466 views
Ant javac classpathref not working?
The javac task in my compile target fails despite the required jars being on the classpath. Could anyone help me figure out why this is happening?
The error below is caused because ...
0
votes
2answers
107 views
Scanner to reset pointer at previous line
My problem could be solved if Scanner class had previous() method on it. I am asking this question to know if there are any methods to achieve this funtionality.
Input:
a file with contents like
a,1
...
0
votes
1answer
42 views
Util method to get Line by Line#
Is there any Util method to get the line contents by Line# from given file?
2
votes
1answer
69 views
What are the different jar files for in Java, and how to import them into Eclipse?
I just downloaded the commons-io-2.4-bin.zip and I am going to import org.apache.commons.io.FileUtils; and I plan to add the jars in eclipse (project->properties->Libraries->add external jars). I ...
0
votes
1answer
145 views
Search recursively for files with certain ending, avoiding SVN folders
I want to search for files with its name ending in "_1.xml" into a folder (UNIX filesystem, I'm searching into /home/myuser/myfolder/). I would like to avoid svn folders: I don't know if they can give ...
2
votes
1answer
156 views
How to continue copying on error with copyDirectory from FileUtils (Apache Commons IO 2.4)
I am trying to copy files from one folder to another using the FileUtils method "static void copyDirectory(File srcDir, File destDir)" from apache commons io (2.4) with the following code:
String ...
3
votes
1answer
73 views
How do I use a ChannelBufferOutputStream to check compression size
In a java program I am compressing an InputStream like this:
ChannelBufferOutputStream outputStream = new ChannelBufferOutputStream(ChannelBuffers.dynamicBuffer(BUFFER_SIZE));
GZIPOutputStream ...
0
votes
0answers
204 views
Create tree using org.apache.commons.io.DirectoryWalker and org.primefaces.model.TreeNode?
For a project we are creating a web app using JSF 2.0 and Primefaces 3.4 to interact with RobotFramework 2.7 as a backend test engine.
A requirement is to be able to load RobotFramework suites and ...
0
votes
0answers
199 views
Can I use Apache FileNameUtils to get the Unix path from Url
I am deploying my web application to unix server for the first time.We have fileUpload functionality in our application. The file upload path is
String url = ...
2
votes
1answer
155 views
Can't be: Error in org.apache.commons.io.IOUtils?
Why does these 2 blocks of code result in a different byte-array?
Apache Commons IO 2.4:
Charset iso_8859_1 = Charset.availableCharsets().get("ISO-8859-1");
return IOUtils.toByteArray(new ...
2
votes
1answer
704 views
images are not appearing good when converted from .docx to pdf
I converted .docx file to .pdf file, the text is converting fine, but the images in the .docx file is not appearing, instead it is represented as some special characters, below is my code:
Please can ...
0
votes
2answers
2k views
IOUtils.copy and IOUtils.copyLarge are very slow
I've implemented a REST service for downloading a moderately large (250 Mb) zip file using IOUtils.copy(), similar to Most effective way to write file to servletoutputstream. The REST service is ...
1
vote
1answer
398 views
Progress bar with Apache FileUtils.copyDirectory(…)
Does anyone know any way of implementing progress bar for Apache's FileUtils.copyDirectory(File src, File dst)? I don't see anything helpful in JavaDocs and API. Seems like a common use case in ...
0
votes
1answer
202 views
MacRoman vs UTF-8
So what I am basically trying to do is pull out byte data from a source encrypt it and then store it in the file system.
For encryption I am using jasypt and the BasicTextEncryptor class. And for ...
0
votes
2answers
521 views
Spring 3 mvc how to upload an image to web app resources
I have a problem with an image upload in spring 3 mvc. I search a couple of hours but can't find any satisfying solution.
What I want to do?
I simply want to upload an Image to the server and store ...
0
votes
0answers
794 views
Uploadify for Servlet/JSP
I'm using Uploadify. I tried this code but it didn't work and it didn't even call the uploadservlet. Can anybody help me or give me a good example how to use uploadify with Servlet/JSP.
I'm using in ...
2
votes
0answers
156 views
Delphi reads, java doesn't read
I have very strange issue. When I want to list files from shared folder (windows server 2003), my code blocks on listFiles() method (no exception, no ends, just blocks on that line). I am using Common ...
1
vote
1answer
385 views
Why can't I read from /proc in Java using Commons IO FileUtils, but can do so using a plain FileInputStream?
I had a problem with reading /proc/%d/stat files using my Java method copyFiles() (source code below).
I have found workaround using similar readProc() method.
Now I am wondering what was the ...
1
vote
0answers
234 views
in java apache.commons.io,how to avoid to read the old log messages
i am using the java Tail-listener API to do the tailf function(in Linux).ie,whenever log messages are updated in log file, this API will print the messages.
My code is given below.
public static ...
2
votes
2answers
3k views
Problems deleting a file with Java (apache commons io)
I am calling a C++ Method via JNI which creates two files. A text log file and a pdf file in a given directory. I want to delete these files (if they exist) before executing the JNI method.
I am ...
0
votes
1answer
346 views
in java TailListener,how to avoid duplicate log messages
my code is given below .
public static void main(String[] args) {
// TODO code application logic here
File pcounter_log = new File("c:\development\temp\test.log");
try {
...
3
votes
1answer
925 views
Java wildcard expansion
I need to expand wildcards in a filepath to get a list of files that match the filepath.
I used commons-io from apache:
protected File[] wildcardResolution(File f) {
File dir = f.getParentFile();
...
2
votes
1answer
190 views
BinaryStreams-like helper classes for NIO Channels?
Is there a library for NIO ByteChannel providing similar utilities to what google-guava and commons-io provide for streams?
E.g. I'd like to have several ReadableByteChannels concatenated in one or ...
1
vote
2answers
215 views
Binary files differ but not to JVM?
I'm having an issue where org.apache.commons.io.FileUtils.copyFile(File, File) is producing slightly different files. When I compare these files with bsdiff or in an editor, I can tell they're ...
1
vote
2answers
8k views
Download file using java apache commons?
How can I use the library to download a file and print out bytes saved? I tried using
import static org.apache.commons.io.FileUtils.copyURLToFile;
public static void Download() {
URL dl = ...
2
votes
3answers
2k views
Socket stream hangs when using IOUtils.copy()
I want to send an InputStream containing XML from the client to a server. Said server manipulates the XML stream using Streaming API for XML (StAX) and sends it back to the client.
I mange to send ...
2
votes
4answers
569 views
Trying to copy file from one location to another
Hello I'm trying to copy file to another directory with commons fileUtils. I tried this
FileUtils.copyFile(getOutputFile(), new File("RESULT/final_result.txt");
The new final_result.txt file ...
0
votes
1answer
2k views
Apache FileUtils listFiles
Hey everyone I'm trying to get a List of directories. I'm using FileUtils listFiles().
I want to do something like this: listFiles(File,IOFileFilter,false). My real questions is how I can ...
17
votes
7answers
8k views
Read a specific line from a text file
Is there any method to read a specific line from a text file ? In the API or Apache Commons.
Something like :
String readLine(File file, int lineNumber)
I agree it's trivial to implement, but it's ...
9
votes
6answers
13k views
Recursively finding only directories with FileUtils.listFiles
I want to collect a list of all files under a directory, in particular including subdirectories. I like not doing things myself, so I'm using FileUtils.listFiles from Apache Commons IO. So I have ...



