summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Beeker <kiwiwings@apache.org>2017-01-06 09:05:14 +0000
committerAndreas Beeker <kiwiwings@apache.org>2017-01-06 09:05:14 +0000
commit2802a3c153ea85089ade9ffab576669d918cc4a5 (patch)
treedaf2dff97b47705ae5bbb080b307cad7aad2ff5d /src
parentfd1ff9f2db4a572f849c995ae339985ef70c7eb7 (diff)
downloadpoi-2802a3c153ea85089ade9ffab576669d918cc4a5.tar.gz
poi-2802a3c153ea85089ade9ffab576669d918cc4a5.zip
SonarQube fixes
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1777541 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r--src/examples/src/org/apache/poi/ss/examples/formula/UserDefinedFunctionExample.java70
-rw-r--r--src/examples/src/org/apache/poi/ss/examples/html/ToHtml.java52
-rw-r--r--src/java/org/apache/poi/ss/format/CellNumberStringMod.java8
3 files changed, 59 insertions, 71 deletions
diff --git a/src/examples/src/org/apache/poi/ss/examples/formula/UserDefinedFunctionExample.java b/src/examples/src/org/apache/poi/ss/examples/formula/UserDefinedFunctionExample.java
index 74dca7d1b6..394026cdc5 100644
--- a/src/examples/src/org/apache/poi/ss/examples/formula/UserDefinedFunctionExample.java
+++ b/src/examples/src/org/apache/poi/ss/examples/formula/UserDefinedFunctionExample.java
@@ -18,28 +18,27 @@ package org.apache.poi.ss.examples.formula;
import java.io.File ;
import java.io.FileInputStream ;
-import java.io.FileNotFoundException ;
-import java.io.IOException ;
-import org.apache.poi.openxml4j.exceptions.InvalidFormatException ;
import org.apache.poi.ss.formula.functions.FreeRefFunction ;
import org.apache.poi.ss.formula.udf.DefaultUDFFinder ;
import org.apache.poi.ss.formula.udf.UDFFinder ;
-import org.apache.poi.ss.usermodel.*;
+import org.apache.poi.ss.usermodel.Cell;
+import org.apache.poi.ss.usermodel.CellValue;
+import org.apache.poi.ss.usermodel.FormulaEvaluator;
+import org.apache.poi.ss.usermodel.Row;
+import org.apache.poi.ss.usermodel.Sheet;
+import org.apache.poi.ss.usermodel.Workbook;
+import org.apache.poi.ss.usermodel.WorkbookFactory;
import org.apache.poi.ss.util.CellReference ;
/**
* An example class of how to invoke a User Defined Function for a given
* XLS instance using POI's UDFFinder implementation.
- *
- * @author Jon Svede ( jon [at] loquatic [dot] com )
- * @author Brian Bush ( brian [dot] bush [at] nrel [dot] gov )
- *
*/
public class UserDefinedFunctionExample {
- public static void main( String[] args ) {
+ public static void main( String[] args ) throws Exception {
if( args.length != 2 ) {
System.out.println( "usage: UserDefinedFunctionExample fileName cellId" ) ;
@@ -51,39 +50,32 @@ public class UserDefinedFunctionExample {
File workbookFile = new File( args[0] ) ;
- try {
- FileInputStream fis = new FileInputStream(workbookFile);
- Workbook workbook = WorkbookFactory.create(fis);
- fis.close();
+ FileInputStream fis = new FileInputStream(workbookFile);
+ Workbook workbook = WorkbookFactory.create(fis);
+ fis.close();
- String[] functionNames = { "calculatePayment" } ;
- FreeRefFunction[] functionImpls = { new CalculateMortgage() } ;
-
- UDFFinder udfToolpack = new DefaultUDFFinder( functionNames, functionImpls ) ;
-
- // register the user-defined function in the workbook
- workbook.addToolPack(udfToolpack);
+ String[] functionNames = { "calculatePayment" } ;
+ FreeRefFunction[] functionImpls = { new CalculateMortgage() } ;
+
+ UDFFinder udfToolpack = new DefaultUDFFinder( functionNames, functionImpls ) ;
- FormulaEvaluator evaluator = workbook.getCreationHelper().createFormulaEvaluator();
+ // register the user-defined function in the workbook
+ workbook.addToolPack(udfToolpack);
- CellReference cr = new CellReference( args[1] ) ;
- String sheetName = cr.getSheetName() ;
- Sheet sheet = workbook.getSheet( sheetName ) ;
- int rowIdx = cr.getRow() ;
- int colIdx = cr.getCol() ;
- Row row = sheet.getRow( rowIdx ) ;
- Cell cell = row.getCell( colIdx ) ;
-
- CellValue value = evaluator.evaluate( cell ) ;
-
- System.out.println("returns value: " + value ) ;
+ FormulaEvaluator evaluator = workbook.getCreationHelper().createFormulaEvaluator();
- } catch( FileNotFoundException e ) {
- e.printStackTrace();
- } catch( InvalidFormatException e ) {
- e.printStackTrace();
- } catch( IOException e ) {
- e.printStackTrace();
- }
+ CellReference cr = new CellReference( args[1] ) ;
+ String sheetName = cr.getSheetName() ;
+ Sheet sheet = workbook.getSheet( sheetName ) ;
+ int rowIdx = cr.getRow() ;
+ int colIdx = cr.getCol() ;
+ Row row = sheet.getRow( rowIdx ) ;
+ Cell cell = row.getCell( colIdx ) ;
+
+ CellValue value = evaluator.evaluate( cell ) ;
+
+ System.out.println("returns value: " + value ) ;
+
+ workbook.close();
}
}
diff --git a/src/examples/src/org/apache/poi/ss/examples/html/ToHtml.java b/src/examples/src/org/apache/poi/ss/examples/html/ToHtml.java
index f5d2ecba8d..2a7fe69f2a 100644
--- a/src/examples/src/org/apache/poi/ss/examples/html/ToHtml.java
+++ b/src/examples/src/org/apache/poi/ss/examples/html/ToHtml.java
@@ -46,13 +46,12 @@ import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.VerticalAlignment;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.ss.usermodel.WorkbookFactory;
+import org.apache.poi.util.IOUtils;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
/**
* This example shows how to display a spreadsheet in HTML using the classes for
* spreadsheet display.
- *
- * @author Ken Arnold, Industrious Media LLC
*/
public class ToHtml {
private final Workbook wb;
@@ -154,23 +153,26 @@ public class ToHtml {
}
private ToHtml(Workbook wb, Appendable output) {
- if (wb == null)
+ if (wb == null) {
throw new NullPointerException("wb");
- if (output == null)
+ }
+ if (output == null) {
throw new NullPointerException("output");
+ }
this.wb = wb;
this.output = output;
setupColorMap();
}
private void setupColorMap() {
- if (wb instanceof HSSFWorkbook)
+ if (wb instanceof HSSFWorkbook) {
helper = new HSSFHtmlHelper((HSSFWorkbook) wb);
- else if (wb instanceof XSSFWorkbook)
+ } else if (wb instanceof XSSFWorkbook) {
helper = new XSSFHtmlHelper();
- else
+ } else {
throw new IllegalArgumentException(
"unknown workbook type: " + wb.getClass().getSimpleName());
+ }
}
/**
@@ -214,11 +216,9 @@ public class ToHtml {
out.format("</html>%n");
}
} finally {
- if (out != null)
- out.close();
+ IOUtils.closeQuietly(out);
if (output instanceof Closeable) {
- Closeable closeable = (Closeable) output;
- closeable.close();
+ IOUtils.closeQuietly((Closeable) output);
}
}
}
@@ -236,8 +236,9 @@ public class ToHtml {
}
private void ensureOut() {
- if (out == null)
+ if (out == null) {
out = new Formatter(output);
+ }
}
public void printStyles() {
@@ -255,14 +256,7 @@ public class ToHtml {
} catch (IOException e) {
throw new IllegalStateException("Reading standard css", e);
} finally {
- if (in != null) {
- try {
- in.close();
- } catch (IOException e) {
- //noinspection ThrowFromFinallyBlock
- throw new IllegalStateException("Reading standard css", e);
- }
- }
+ IOUtils.closeQuietly(in);
}
// now add css for each used style
@@ -307,10 +301,12 @@ public class ToHtml {
private void fontStyle(CellStyle style) {
Font font = wb.getFontAt(style.getFontIndex());
- if (font.getBold())
+ if (font.getBold()) {
out.format(" font-weight: bold;%n");
- if (font.getItalic())
+ }
+ if (font.getItalic()) {
out.format(" font-style: italic;%n");
+ }
int fontheight = font.getFontHeightInPoints();
if (fontheight == 9) {
@@ -323,8 +319,9 @@ public class ToHtml {
}
private String styleName(CellStyle style) {
- if (style == null)
+ if (style == null) {
style = wb.getCellStyleAt((short) 0);
+ }
StringBuilder sb = new StringBuilder();
Formatter fmt = new Formatter(sb);
try {
@@ -344,8 +341,9 @@ public class ToHtml {
private static CellType ultimateCellType(Cell c) {
CellType type = c.getCellTypeEnum();
- if (type == CellType.FORMULA)
+ if (type == CellType.FORMULA) {
type = c.getCachedFormulaResultTypeEnum();
+ }
return type;
}
@@ -372,8 +370,9 @@ public class ToHtml {
}
private void ensureColumnBounds(Sheet sheet) {
- if (gotBounds)
+ if (gotBounds) {
return;
+ }
Iterator<Row> iter = sheet.rowIterator();
firstColumn = (iter.hasNext() ? Integer.MAX_VALUE : 0);
@@ -434,8 +433,9 @@ public class ToHtml {
style.getDataFormatString());
CellFormatResult result = cf.apply(cell);
content = result.text;
- if (content.equals(""))
+ if (content.equals("")) {
content = "&nbsp;";
+ }
}
}
out.format(" <td class=%s %s>%s</td>%n", styleName(style),
diff --git a/src/java/org/apache/poi/ss/format/CellNumberStringMod.java b/src/java/org/apache/poi/ss/format/CellNumberStringMod.java
index a053206a87..050a1512c8 100644
--- a/src/java/org/apache/poi/ss/format/CellNumberStringMod.java
+++ b/src/java/org/apache/poi/ss/format/CellNumberStringMod.java
@@ -63,6 +63,7 @@ public class CellNumberStringMod implements Comparable<CellNumberStringMod> {
toAdd = "";
}
+ @Override
public int compareTo(CellNumberStringMod that) {
int diff = special.pos - that.special.pos;
return (diff != 0) ? diff : (op - that.op);
@@ -70,12 +71,7 @@ public class CellNumberStringMod implements Comparable<CellNumberStringMod> {
@Override
public boolean equals(Object that) {
- try {
- return compareTo((CellNumberStringMod) that) == 0;
- } catch (RuntimeException ignored) {
- // NullPointerException or CastException
- return false;
- }
+ return (that instanceof CellNumberStringMod) && compareTo((CellNumberStringMod) that) == 0;
}
@Override