Fix inconsistent whitespace, and add a close call in the main method to avoid a resource-leak warning
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1575684 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2a7cebf8c0
commit
f63b47b8f6
@ -82,6 +82,7 @@ public class XSSFEventBasedExcelExtractor extends POIXMLTextExtractor
|
|||||||
POIXMLTextExtractor extractor =
|
POIXMLTextExtractor extractor =
|
||||||
new XSSFEventBasedExcelExtractor(args[0]);
|
new XSSFEventBasedExcelExtractor(args[0]);
|
||||||
System.out.println(extractor.getText());
|
System.out.println(extractor.getText());
|
||||||
|
extractor.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -252,113 +253,113 @@ public class XSSFEventBasedExcelExtractor extends POIXMLTextExtractor
|
|||||||
super.close();
|
super.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected class SheetTextExtractor implements SheetContentsHandler {
|
protected class SheetTextExtractor implements SheetContentsHandler {
|
||||||
private final StringBuffer output;
|
private final StringBuffer output;
|
||||||
private boolean firstCellOfRow;
|
private boolean firstCellOfRow;
|
||||||
private final Map<String, String> headerFooterMap;
|
private final Map<String, String> headerFooterMap;
|
||||||
|
|
||||||
protected SheetTextExtractor() {
|
|
||||||
this.output = new StringBuffer();
|
|
||||||
this.firstCellOfRow = true;
|
|
||||||
this.headerFooterMap = includeHeadersFooters ? new HashMap<String, String>() : null;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void startRow(int rowNum) {
|
|
||||||
firstCellOfRow = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void endRow() {
|
|
||||||
output.append('\n');
|
|
||||||
}
|
|
||||||
|
|
||||||
public void cell(String cellRef, String formattedValue) {
|
protected SheetTextExtractor() {
|
||||||
if(firstCellOfRow) {
|
this.output = new StringBuffer();
|
||||||
firstCellOfRow = false;
|
this.firstCellOfRow = true;
|
||||||
} else {
|
this.headerFooterMap = includeHeadersFooters ? new HashMap<String, String>() : null;
|
||||||
output.append('\t');
|
}
|
||||||
}
|
|
||||||
output.append(formattedValue);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void headerFooter(String text, boolean isHeader, String tagName) {
|
|
||||||
if (headerFooterMap != null) {
|
|
||||||
headerFooterMap.put(tagName, text);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Append the text for the named header or footer if found.
|
|
||||||
*/
|
|
||||||
private void appendHeaderFooterText(StringBuffer buffer, String name) {
|
|
||||||
String text = headerFooterMap.get(name);
|
|
||||||
if (text != null && text.length() > 0) {
|
|
||||||
// this is a naive way of handling the left, center, and right
|
|
||||||
// header and footer delimiters, but it seems to be as good as
|
|
||||||
// the method used by XSSFExcelExtractor
|
|
||||||
text = handleHeaderFooterDelimiter(text, "&L");
|
|
||||||
text = handleHeaderFooterDelimiter(text, "&C");
|
|
||||||
text = handleHeaderFooterDelimiter(text, "&R");
|
|
||||||
buffer.append(text).append('\n');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Remove the delimiter if its found at the beginning of the text,
|
|
||||||
* or replace it with a tab if its in the middle.
|
|
||||||
*/
|
|
||||||
private String handleHeaderFooterDelimiter(String text, String delimiter) {
|
|
||||||
int index = text.indexOf(delimiter);
|
|
||||||
if (index == 0) {
|
|
||||||
text = text.substring(2);
|
|
||||||
} else if (index > 0) {
|
|
||||||
text = text.substring(0, index) + "\t" + text.substring(index + 2);
|
|
||||||
}
|
|
||||||
return text;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
public void startRow(int rowNum) {
|
||||||
/**
|
firstCellOfRow = true;
|
||||||
* Append the text for each header type in the same order
|
}
|
||||||
* they are appended in XSSFExcelExtractor.
|
|
||||||
* @see XSSFExcelExtractor#getText()
|
|
||||||
* @see org.apache.poi.hssf.extractor.ExcelExtractor#_extractHeaderFooter(org.apache.poi.ss.usermodel.HeaderFooter)
|
|
||||||
*/
|
|
||||||
private void appendHeaderText(StringBuffer buffer) {
|
|
||||||
appendHeaderFooterText(buffer, "firstHeader");
|
|
||||||
appendHeaderFooterText(buffer, "oddHeader");
|
|
||||||
appendHeaderFooterText(buffer, "evenHeader");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Append the text for each footer type in the same order
|
|
||||||
* they are appended in XSSFExcelExtractor.
|
|
||||||
* @see XSSFExcelExtractor#getText()
|
|
||||||
* @see org.apache.poi.hssf.extractor.ExcelExtractor#_extractHeaderFooter(org.apache.poi.ss.usermodel.HeaderFooter)
|
|
||||||
*/
|
|
||||||
private void appendFooterText(StringBuffer buffer) {
|
|
||||||
// append the text for each footer type in the same order
|
|
||||||
// they are appended in XSSFExcelExtractor
|
|
||||||
appendHeaderFooterText(buffer, "firstFooter");
|
|
||||||
appendHeaderFooterText(buffer, "oddFooter");
|
|
||||||
appendHeaderFooterText(buffer, "evenFooter");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
public void endRow() {
|
||||||
* Append the cell contents we have collected.
|
output.append('\n');
|
||||||
*/
|
}
|
||||||
private void appendCellText(StringBuffer buffer) {
|
|
||||||
buffer.append(output);
|
public void cell(String cellRef, String formattedValue) {
|
||||||
}
|
if(firstCellOfRow) {
|
||||||
|
firstCellOfRow = false;
|
||||||
/**
|
} else {
|
||||||
* Reset this <code>SheetTextExtractor</code> for the next sheet.
|
output.append('\t');
|
||||||
*/
|
}
|
||||||
private void reset() {
|
output.append(formattedValue);
|
||||||
output.setLength(0);
|
}
|
||||||
firstCellOfRow = true;
|
|
||||||
if (headerFooterMap != null) {
|
public void headerFooter(String text, boolean isHeader, String tagName) {
|
||||||
headerFooterMap.clear();
|
if (headerFooterMap != null) {
|
||||||
}
|
headerFooterMap.put(tagName, text);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Append the text for the named header or footer if found.
|
||||||
|
*/
|
||||||
|
private void appendHeaderFooterText(StringBuffer buffer, String name) {
|
||||||
|
String text = headerFooterMap.get(name);
|
||||||
|
if (text != null && text.length() > 0) {
|
||||||
|
// this is a naive way of handling the left, center, and right
|
||||||
|
// header and footer delimiters, but it seems to be as good as
|
||||||
|
// the method used by XSSFExcelExtractor
|
||||||
|
text = handleHeaderFooterDelimiter(text, "&L");
|
||||||
|
text = handleHeaderFooterDelimiter(text, "&C");
|
||||||
|
text = handleHeaderFooterDelimiter(text, "&R");
|
||||||
|
buffer.append(text).append('\n');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Remove the delimiter if its found at the beginning of the text,
|
||||||
|
* or replace it with a tab if its in the middle.
|
||||||
|
*/
|
||||||
|
private String handleHeaderFooterDelimiter(String text, String delimiter) {
|
||||||
|
int index = text.indexOf(delimiter);
|
||||||
|
if (index == 0) {
|
||||||
|
text = text.substring(2);
|
||||||
|
} else if (index > 0) {
|
||||||
|
text = text.substring(0, index) + "\t" + text.substring(index + 2);
|
||||||
|
}
|
||||||
|
return text;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Append the text for each header type in the same order
|
||||||
|
* they are appended in XSSFExcelExtractor.
|
||||||
|
* @see XSSFExcelExtractor#getText()
|
||||||
|
* @see org.apache.poi.hssf.extractor.ExcelExtractor#_extractHeaderFooter(org.apache.poi.ss.usermodel.HeaderFooter)
|
||||||
|
*/
|
||||||
|
private void appendHeaderText(StringBuffer buffer) {
|
||||||
|
appendHeaderFooterText(buffer, "firstHeader");
|
||||||
|
appendHeaderFooterText(buffer, "oddHeader");
|
||||||
|
appendHeaderFooterText(buffer, "evenHeader");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Append the text for each footer type in the same order
|
||||||
|
* they are appended in XSSFExcelExtractor.
|
||||||
|
* @see XSSFExcelExtractor#getText()
|
||||||
|
* @see org.apache.poi.hssf.extractor.ExcelExtractor#_extractHeaderFooter(org.apache.poi.ss.usermodel.HeaderFooter)
|
||||||
|
*/
|
||||||
|
private void appendFooterText(StringBuffer buffer) {
|
||||||
|
// append the text for each footer type in the same order
|
||||||
|
// they are appended in XSSFExcelExtractor
|
||||||
|
appendHeaderFooterText(buffer, "firstFooter");
|
||||||
|
appendHeaderFooterText(buffer, "oddFooter");
|
||||||
|
appendHeaderFooterText(buffer, "evenFooter");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Append the cell contents we have collected.
|
||||||
|
*/
|
||||||
|
private void appendCellText(StringBuffer buffer) {
|
||||||
|
buffer.append(output);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reset this <code>SheetTextExtractor</code> for the next sheet.
|
||||||
|
*/
|
||||||
|
private void reset() {
|
||||||
|
output.setLength(0);
|
||||||
|
firstCellOfRow = true;
|
||||||
|
if (headerFooterMap != null) {
|
||||||
|
headerFooterMap.clear();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user