Package org.apache.tomcat.jakartaee
Class TextConverter
java.lang.Object
org.apache.tomcat.jakartaee.TextConverter
- All Implemented Interfaces:
Converter
Converter for text resources.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
Check if the file can be processed by this converter.boolean
convert
(String path, InputStream src, OutputStream dest, EESpecProfile profile) Copies the source to the destination, converting it if necessary, according to the requirements of the given profile.
-
Field Details
-
logger
-
sm
-
supportedExtensions
-
-
Constructor Details
-
TextConverter
public TextConverter()Default constructor.
-
-
Method Details
-
accepts
Description copied from interface:Converter
Check if the file can be processed by this converter. -
convert
public boolean convert(String path, InputStream src, OutputStream dest, EESpecProfile profile) throws IOException Description copied from interface:Converter
Copies the source to the destination, converting it if necessary, according to the requirements of the given profile.- Specified by:
convert
in interfaceConverter
- Parameters:
path
- The path to the data being convertedsrc
- The source data to convertdest
- The destination to write the converted dataprofile
- The profile that defines the conversion required- Returns:
- true if the converter made a conversion to the file
- Throws:
IOException
- If the conversion fails
-