testescherspgrrecord.java

来自「EXCEL read and write」· Java 代码 · 共 86 行

JAVA
86
字号
/* ====================================================================   Licensed to the Apache Software Foundation (ASF) under one or more   contributor license agreements.  See the NOTICE file distributed with   this work for additional information regarding copyright ownership.   The ASF licenses this file to You under the Apache License, Version 2.0   (the "License"); you may not use this file except in compliance with   the License.  You may obtain a copy of the License at       http://www.apache.org/licenses/LICENSE-2.0   Unless required by applicable law or agreed to in writing, software   distributed under the License is distributed on an "AS IS" BASIS,   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   See the License for the specific language governing permissions and   limitations under the License.==================================================================== */package org.apache.poi.ddf;import junit.framework.TestCase;import org.apache.poi.util.HexDump;import org.apache.poi.util.HexRead;public class TestEscherSpgrRecord extends TestCase{    public void testSerialize() {        EscherSpgrRecord r = createRecord();        byte[] data = new byte[24];        int bytesWritten = r.serialize( 0, data, new NullEscherSerializationListener() );        assertEquals( 24, bytesWritten );        assertEquals( "[10, 00, " +                "09, F0, " +                "10, 00, 00, 00, " +                "01, 00, 00, 00, " +     // x                "02, 00, 00, 00, " +     // y                "03, 00, 00, 00, " +     // width                "04, 00, 00, 00]",     // height                HexDump.toHex( data ) );    }    public void testFillFields() {        String hexData = "10 00 " +                "09 F0 " +                "10 00 00 00 " +                "01 00 00 00 " +                "02 00 00 00 " +                "03 00 00 00 " +                "04 00 00 00 ";        byte[] data = HexRead.readFromString( hexData );        EscherSpgrRecord r = new EscherSpgrRecord();        int bytesWritten = r.fillFields( data, new DefaultEscherRecordFactory() );        assertEquals( 24, bytesWritten );        assertEquals( 1, r.getRectX1() );        assertEquals( 2, r.getRectY1() );        assertEquals( 3, r.getRectX2() );        assertEquals( 4, r.getRectY2() );    }    public void testToString() {        String nl = System.getProperty("line.separator");        String expected = "org.apache.poi.ddf.EscherSpgrRecord:" + nl +                "  RecordId: 0xF009" + nl +                "  Options: 0x0010" + nl +                "  RectX: 1" + nl +                "  RectY: 2" + nl +                "  RectWidth: 3" + nl +                "  RectHeight: 4" + nl;        assertEquals( expected, createRecord().toString() );    }    private static EscherSpgrRecord createRecord()    {        EscherSpgrRecord r = new EscherSpgrRecord();        r.setOptions( (short) 0x0010 );        r.setRecordId( EscherSpgrRecord.RECORD_ID );        r.setRectX1(1);        r.setRectY1(2);        r.setRectX2(3);        r.setRectY2(4);        return r;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?