]> source.dussan.org Git - poi.git/commitdiff
Fix some Forbidden APIs errors
authorNick Burch <nick@apache.org>
Tue, 1 Sep 2015 21:46:30 +0000 (21:46 +0000)
committerNick Burch <nick@apache.org>
Tue, 1 Sep 2015 21:46:30 +0000 (21:46 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1700677 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hpsf/ClassID.java
src/java/org/apache/poi/hpsf/CodePageString.java
src/java/org/apache/poi/hpsf/SpecialPropertySet.java
src/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java
src/java/org/apache/poi/ss/formula/functions/Dec2Hex.java
src/java/org/apache/poi/ss/formula/functions/EDate.java
src/testcases/org/apache/poi/hssf/dev/TestBiffViewer.java

index c78702c3c1ac90ee9a8b8108cf48c9bb97c1caf6..4db64c96bce2ebb795625365118a9c0633fe58b7 100644 (file)
 package org.apache.poi.hpsf;
 
 import org.apache.poi.util.HexDump;
+import org.apache.poi.util.StringUtil;
 
 /**
  *  <p>Represents a class ID (16 bytes). Unlike other little-endian
  *  type the {@link ClassID} is not just 16 bytes stored in the wrong
  *  order. Instead, it is a double word (4 bytes) followed by two
  *  words (2 bytes each) followed by 8 bytes.</p>
- *
- * @author Rainer Klute <a
- * href="mailto:klute@rainer-klute.de">&lt;klute@rainer-klute.de&gt;</a>
  */
 public class ClassID
 {
@@ -238,11 +236,9 @@ public class ClassID
      */
     public int hashCode()
     {
-        return new String(bytes).hashCode();
+        return new String(bytes, StringUtil.UTF8).hashCode();
     }
 
-
-
     /**
      * <p>Returns a human-readable representation of the Class ID in standard 
      * format <code>"{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}"</code>.</p>
index b94cb67c13020a5a1e89fd4f74f23488dadeb6b1..8eb8987b3439ed4b8b7b91de6f13340cfe146cb3 100644 (file)
@@ -25,6 +25,7 @@ import org.apache.poi.util.Internal;
 import org.apache.poi.util.LittleEndian;
 import org.apache.poi.util.POILogFactory;
 import org.apache.poi.util.POILogger;
+import org.apache.poi.util.StringUtil;
 
 @Internal
 class CodePageString
@@ -64,7 +65,7 @@ class CodePageString
     {
         String result;
         if ( codepage == -1 )
-            result = new String( _value );
+            result = new String( _value, StringUtil.UTF8 );
         else
             result = CodePageUtil.getStringFromCodePage(_value, codepage);
         final int terminator = result.indexOf( '\0' );
@@ -96,7 +97,7 @@ class CodePageString
     {
         String stringNT = string + "\0";
         if ( codepage == -1 )
-            _value = stringNT.getBytes();
+            _value = stringNT.getBytes(StringUtil.UTF8);
         else
             _value = CodePageUtil.getBytesInCodePage(stringNT, codepage);
     }
index 4bcd8ca71ffcd9fd2890968fd00a3a7d35d68b35..9eb5a9954a82f4119c033e26b78d6333b452ba77 100644 (file)
@@ -20,6 +20,7 @@ package org.apache.poi.hpsf;
 import java.io.IOException;
 import java.io.InputStream;
 import java.io.OutputStream;
+import java.nio.charset.Charset;
 import java.util.List;
 
 import org.apache.poi.hpsf.wellknown.PropertyIDMap;
@@ -345,7 +346,7 @@ public abstract class SpecialPropertySet extends MutablePropertySet
                 return Long.toString( LittleEndian.getUInt(b) );
             }
             // Maybe it's a string? who knows!
-            return new String(b);
+            return new String(b, Charset.forName("ASCII"));
         }
         return propertyValue.toString();
     }
index f7d2e93fddfa86903e9f74b37afcac6d6403b044..dfca245899d7c79bbd64b54944be0962b1ad4839 100644 (file)
@@ -23,7 +23,9 @@ import java.io.FileNotFoundException;
 import java.io.IOException;
 import java.io.InputStream;
 import java.io.OutputStream;
+import java.io.OutputStreamWriter;
 import java.io.PrintWriter;
+import java.nio.charset.Charset;
 import java.util.ArrayList;
 import java.util.Arrays;
 import java.util.HashMap;
@@ -1713,7 +1715,7 @@ public final class HSSFWorkbook extends POIDocument implements org.apache.poi.ss
         DrawingGroupRecord r = (DrawingGroupRecord) workbook.findFirstRecordBySid( DrawingGroupRecord.sid );
         r.decode();
         List<EscherRecord> escherRecords = r.getEscherRecords();
-        PrintWriter w = new PrintWriter(System.out);
+        PrintWriter w = new PrintWriter(new OutputStreamWriter(System.out, Charset.defaultCharset()));
         for ( Iterator<EscherRecord> iterator = escherRecords.iterator(); iterator.hasNext(); )
         {
             EscherRecord escherRecord = iterator.next();
index 8bae27b8acb971681ed825a15bfa02ec7fe8a187..caf92bb333bc970647cd27c5de0e7285cb035c83 100644 (file)
@@ -51,8 +51,6 @@ import org.apache.poi.ss.formula.eval.*;
  * <li>If this argument is negative, this function returns the #NUM! error value.</li>\r
  * <li>If this argument contains a decimal value, this function ignores the numbers to the right side of the decimal point.</li>\r
  * </ul>\r
- *\r
- * @author cedric dot walter @ gmail dot com\r
  */\r
 public final class Dec2Hex extends Var1or2ArgFunction implements FreeRefFunction {\r
 \r
@@ -111,7 +109,7 @@ public final class Dec2Hex extends Var1or2ArgFunction implements FreeRefFunction
 \r
         String hex;\r
         if (placesNumber != 0) {\r
-            hex = String.format("%0"+placesNumber+"X", number1.intValue());\r
+            hex = String.format("%0"+placesNumber+"X", number1.intValue(), Locale.ROOT);\r
         }\r
         else {\r
             hex = Integer.toHexString(number1.intValue());\r
index 78c773d4a96ea60a055ecee11124508a4efaedcc..205879fedd186551dfa0d2f78f61af5b16534c09 100644 (file)
@@ -19,6 +19,8 @@ package org.apache.poi.ss.formula.functions;
 
 import java.util.Calendar;
 import java.util.Date;
+import java.util.Locale;
+import java.util.TimeZone;
 
 import org.apache.poi.ss.formula.OperationEvaluationContext;
 import org.apache.poi.ss.formula.eval.BlankEval;
@@ -33,6 +35,12 @@ import org.apache.poi.ss.usermodel.DateUtil;
  * Implementation for Excel EDATE () function.
  */
 public class EDate implements FreeRefFunction {
+    /**
+     * Excel doesn't store TimeZone information in the file, so if in doubt,
+     *  use UTC to perform calculations
+     */
+    private static final TimeZone DEFAULT_TIMEZONE = TimeZone.getTimeZone("UTC");
+
     public static final FreeRefFunction instance = new EDate();
 
     public ValueEval evaluate(ValueEval[] args, OperationEvaluationContext ec) {
@@ -44,7 +52,7 @@ public class EDate implements FreeRefFunction {
             int offsetInMonthAsNumber = (int) getValue(args[1]);
 
             Date startDate = DateUtil.getJavaDate(startDateAsNumber);
-            Calendar calendar = Calendar.getInstance();
+            Calendar calendar = Calendar.getInstance(DEFAULT_TIMEZONE, Locale.ROOT);
             calendar.setTime(startDate);
             calendar.add(Calendar.MONTH, offsetInMonthAsNumber);
             return new NumberEval(DateUtil.getExcelDate(calendar.getTime()));
index 776e27852689640111dc82825618899682438c0e..c96aec4f7f3e8725e4c7444bdad82dcd8fbbfce3 100644 (file)
@@ -19,12 +19,9 @@ package org.apache.poi.hssf.dev;
 import java.io.File;
 import java.io.IOException;
 import java.io.InputStream;
-import java.io.PrintStream;
+import java.io.PrintWriter;
 
-import org.apache.poi.POIDataSamples;
 import org.apache.poi.poifs.filesystem.NPOIFSFileSystem;
-import org.junit.Ignore;
-import org.junit.Test;
 
 public class TestBiffViewer extends BaseXLSIteratingTest {
        static {
@@ -52,7 +49,7 @@ public class TestBiffViewer extends BaseXLSIteratingTest {
                InputStream is = BiffViewer.getPOIFSInputStream(fs);
                try {
                        // use a NullOutputStream to not write the bytes anywhere for best runtime 
-                       BiffViewer.runBiffViewer(new PrintStream(NULL_OUTPUT_STREAM), is, true, true, true, false);
+                       BiffViewer.runBiffViewer(new PrintWriter(NULL_OUTPUT_STREAM), is, true, true, true, false);
                } finally {
                        is.close();
                        fs.close();