Class PdfString
java.lang.Object
com.itextpdf.text.pdf.PdfObject
com.itextpdf.text.pdf.PdfString
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
PdfDate
A
PdfString-class is the PDF-equivalent of a
JAVA-String-object.
A string is a sequence of characters delimited by parenthesis.
If a string is too long to be conveniently placed on a single line, it may
be split across multiple lines by using the backslash character (\) at the
end of a line to indicate that the string continues on the following line.
Within a string, the backslash character is used as an escape to specify
unbalanced parenthesis, non-printing ASCII characters, and the backslash
character itself. Use of the \ddd escape sequence is the preferred
way to represent characters outside the printable ASCII character set.
This object is described in the 'Portable Document Format Reference Manual
version 1.7' section 3.2.3 (page 53-56).
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionConstructs an emptyPdfString-object.PdfString(byte[] bytes) Constructs aPdfString-object.Constructs aPdfString-object containing a string in the standard encodingTEXT_PDFDOCENCODING.Constructs aPdfString-object containing a string in the specified encoding. -
Method Summary
Modifier and TypeMethodDescription(package private) voidDecrypt an encryptedPdfStringbyte[]getBytes()Gets the presentation of this object in a byte arrayGets the encoding of this string.byte[]booleansetHexWriting(boolean hexWriting) (package private) voidsetObjNum(int objNum, int objGen) voidtoPdf(PdfWriter writer, OutputStream os) Writes the PDF representation of thisPdfStringas an array ofbyteto the specifiedOutputStream.toString()Returns theStringvalue of thisPdfString-object.Returns the UnicodeStringvalue of thisPdfString-object.Methods inherited from class PdfObject
canBeInObjStm, getIndRef, isArray, isBoolean, isDictionary, isIndirect, isName, isNull, isNumber, isStream, isString, length, setContent, setIndRef, type
-
Field Details
-
value
The value of this object. -
originalValue
-
encoding
The encoding. -
objNum
protected int objNum -
objGen
protected int objGen -
hexWriting
protected boolean hexWriting
-
-
Constructor Details
-
PdfString
public PdfString()Constructs an emptyPdfString-object. -
PdfString
Constructs aPdfString-object containing a string in the standard encodingTEXT_PDFDOCENCODING.- Parameters:
value- the content of the string
-
PdfString
-
PdfString
public PdfString(byte[] bytes) Constructs aPdfString-object.- Parameters:
bytes- an array ofbyte
-
-
Method Details
-
toPdf
Writes the PDF representation of thisPdfStringas an array ofbyteto the specifiedOutputStream.- Overrides:
toPdfin classPdfObject- Parameters:
writer- for backwards compatibilityos- TheOutputStreamto write the bytes to.- Throws:
IOException
-
toString
-
getBytes
-
toUnicodeString
Returns the UnicodeStringvalue of thisPdfString-object.- Returns:
- A
String
-
getEncoding
-
setObjNum
void setObjNum(int objNum, int objGen) -
decrypt
Decrypt an encryptedPdfString -
getOriginalBytes
public byte[] getOriginalBytes() -
setHexWriting
-
isHexWriting
public boolean isHexWriting()
-