ライセンス

setLicenseを呼び出す

ライセンスをコンピューターにダウンロードし、適切なフォルダーにコピーします(たとえばアプリケーションのフォルダーまたは JasperReports\lib など)。 以下のコードをプロジェクトに追加します。

import com.aspose.cells.jasperreports.*;

// Create a stream object containing the license file

FileInputStream fstream = new FileInputStream("C:\\Aspose.Cells.JasperReports.lic");

// Set the license through the stream object

License license = new License();

license.setLicense(fstream);

applicationContext.xmlでlicenseFileエクスポーターパラメーターを設定します

  1. Download the license to your computer and copy it to the <InstallDir>\apache-tomcat\webapps\jasperserver\WEB-INF folder, where <InstallDir> stands for the JasperServer installation directory.
  2. Locate the <InstallDir>\apache-tomcat\webapps\jasperserver\WEB-INF\applicationContext.xml file and add the following lines:

XML

  <bean id="excelACExportParameters" class="com.aspose.cells.jasperreports.ACXlsExportParametersBean">

    <property name="licenseFile" value="C:/jasperserver-3.0/apache-tomcat/webapps/jasperserver/WEB-INF/Aspose.Cells.JasperReports.lic"/>

</bean>

ライセンスが正常に動作しているか確認します

任意のレポートをXLS形式でエクスポートし、レポートに評価メッセージが含まれているかどうかを確認します。 評価メッセージがない場合、ライセンスは正常に動作しています。

Aspose.Cells for JasperReportsは評価ワークシートを評価モードで注入します

todo:image_alt_text

有効なライセンスがあるときに評価ワークシートは表示されません

todo:image_alt_text