2017-01-11 5 views
0

私のレポートには、データベースからのものであるかもしれない奇妙な負の値があります。式エディタで値が負の場合、フィールドを書式設定してゼロを表示する必要があります。これはどうすればできますか?BigDecimalフィールドの値がJasperReportsで負であるかどうかをチェックする方法

+0

式は次のようになります: '$ F {} bigDecimalValueが.signum()== -1? "0": "something else" ' –

+0

@AlexKありがとう、それはそれを解決しました。しかしDouble値で試してみたところ、 'double型のメソッドsignum()は未定義です.' – Hilarious404

+0

さて、' $ V {doubleValue} <0? "0": "他の何か" – Hilarious404

答えて

2

あなたはのBigDecimalの兆候を確認するためのBigDecimal.signum()メソッドを使用する必要があります。

式は次のようになります。

<textFieldExpression><![CDATA[$P{bigDecimalValue}.signum() == -1 ? "0" : "Not negative big decimal"]]></textFieldExpression> 

ダブルための式は簡単です:

<textFieldExpression><![CDATA[$P{doubleValue} < 0 ? "0" : "Non negative double"]]></textFieldExpression> 

サンプル:

<?xml version="1.0" encoding="UTF-8"?> 
<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="BigDecimal check" pageWidth="595" pageHeight="842" whenNoDataType="AllSectionsNoDetail" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20"> 
    <property name="com.jaspersoft.studio.data.defaultdataadapter" value="One Empty Record"/> 
    <parameter name="doubleValue" class="java.lang.Double" isForPrompting="false"> 
     <defaultValueExpression><![CDATA[1234.567]]></defaultValueExpression> 
    </parameter> 
    <parameter name="bigDecimalValue" class="java.math.BigDecimal" isForPrompting="false"> 
     <defaultValueExpression><![CDATA[new BigDecimal(-9.8)]]></defaultValueExpression> 
    </parameter> 
    <title> 
     <band height="70"> 
      <textField> 
       <reportElement x="10" y="10" width="300" height="15"/> 
        <textFieldExpression><![CDATA[$P{doubleValue} < 0.0 ? "0" : "Non negative double"]]></textFieldExpression> 
      </textField> 
      <textField> 
       <reportElement x="10" y="25" width="300" height="15"/> 
       <textFieldExpression><![CDATA[$P{bigDecimalValue}.signum() == -1 ? "0" : "Not negative big decimal"]]></textFieldExpression> 
      </textField> 
     </band> 
    </title> 
</jasperReport> 

Jaspersoft Studioで生成された出力結果は次のようになります。

enter image description here

関連する問題