Class | Description |
---|---|
org.apache.commons.io.CopyUtils |
Use IOUtils. Will be removed in 2.0.
Methods renamed to IOUtils.write() or IOUtils.copy().
Null handling behaviour changed in IOUtils (null data does not
throw NullPointerException).
|
org.apache.commons.io.FileCleaner | |
org.apache.commons.io.filefilter.WildcardFilter |
Use WilcardFileFilter. Deprecated as this class performs directory
filtering which it shouldn't do, but that can't be removed due to compatability.
|
Method | Description |
---|---|
org.apache.commons.io.FileCleaner.exitWhenFinished() | |
org.apache.commons.io.FileCleaner.getTrackCount() | |
org.apache.commons.io.FileCleaner.track(File, Object) | |
org.apache.commons.io.filefilter.FileFilterUtils.andFileFilter(IOFileFilter, IOFileFilter) | |
org.apache.commons.io.filefilter.FileFilterUtils.orFileFilter(IOFileFilter, IOFileFilter) | |
org.apache.commons.io.FileSystemUtils.freeSpace(String) |
Use freeSpaceKb(String)
Deprecated from 1.3, may be removed in 2.0
|
org.apache.commons.io.IOUtils.toByteArray(String) |
Use
String.getBytes() |
org.apache.commons.io.IOUtils.toString(byte[]) |
Use
String(byte[]) |
org.apache.commons.io.IOUtils.write(StringBuffer, Writer) |
replaced by write(CharSequence, Writer)
|
Copyright (c) 2002-2017 Apache Software Foundation