일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 釜つる
- PostgreSQL
- duckdb
- 熱海
- Python
- codebuild
- 방콕
- typescript
- 체코
- node.js
- 태국
- 메르페이
- PayPay
- JenkinsFile
- terraform
- vba
- 미츠이 스미토모
- 프라하
- javascript
- react.js
- local
- Selenium
- 아타미
- 뮌헨
- 페이페이
- pyenv
- documentdb
- CSV
- 三井住友カード
- 카마츠루
- Today
- Total
목록Tech/iReport (16)
도쿄사는 외노자
DB에서 Data를 가지고 올 경우, 해당 Data를 줄바꿈해야 할 필요가 있다면...받아온 Data를 iReport자체에서 줄바꾸기를 하는 것은 불가능하다.(Replace all 등으로 어찌어찌 만지면 바꿀 수 있을지도 모르겠다)다만, Action에서 iReport로 값을 넘길 때 (혹은 DB자체에서) 자체 줄바꿈을 할 수 있는 방법을 발견하여 여기 적는다. 1. 일단 받아올 Data(String)에서 줄바꿈이 필요한 부분을 >로 고친다.2. iReport에서 해당 Text Field의 Property를 열어, Markup을 none에서 html로 수정한다. Static Text에서는 그냥 Alt + Enter로 해결되며,혹시 Text Field에서 두 개의 항목을 줄바꿈으로 표현해야 하는 경우에는$F..
Oracle (DB) (BLOB) JAVA (Form)Entitypublic byte[] ifKaishaLogo; Getterpublic byte[] getIfKaishaLogo() {return ifKaishaLogo;} iReportField- Field ClassifKaishaLogo - Field Classjava.lang.Object Image Property- Image Expressionnet.sf.jasperreports.engine.util.JRImageLoader.loadImage((byte[]) $F{ifKaishaLogo}) - Expression Classjava.awt.Image ※ java.awt.Image로 설정 및 컴파일 후 다시 jrxml파일을 열어보면 java.lang...
1. 수량 포맷 변환 new DecimalFormat("#,###.00").format(new BigDecimal(Double.valueOf($F{noSuryo}))) + " " + $F{cdSuryoTani} String을 Double 변환Double을 BigDecimal로 변환DecimalFormat으로 포맷변환 2. 날짜, 시간 포맷 변환 new SimpleDateFormat("YYYY年MM月dd日").format( new SimpleDateFormat("yyyyMMdd").parse( $F{dtTsumi} )) + " 出荷" 날짜 형태의 String을 SimpleDateFormat으로 parse하여 Date 포맷으로 변환Date를 SimpleDateFormat으로 다시 String변환 이 때, 처..
java.lang.NoClassDefFoundError: org/codehaus/groovy/control/CompilationFailedException iReport는 문서의 기본 언어 설정이 Groovy로 되어 있는데,이 때문에 위의 익셉션이 발생한다.이를 해당 언어(아래의 경우는 자바)로 바꿔 주면 해결
iReportのInstall方法 iReportとは?iReportとは、JasperReportLibraryを利用して報告書を作成するOpen Source Program。GUIで簡単に報告書を作れる。 クライアント開発環境 iReport(5.5.0)をダウンロード、インストール(Win版はinstallerがある) Download : http://sourceforge.net/projects/ireport/files/iReport/#iReportはJDK1.8では実行不可能 – JDK1.7が必要!(ただ、この下の方法だとJDKのバージョンをわざわざ1.7にするなどの必要はない) ------------------------------------------------------------------------------------- iRepo..
1.PDFで出力してほしいフォントのTrue Type Fontファイルを準備する。C:\Windows\Fontsにあるフォントは、TTC(True Type Collection)ファイル。これをBREAKTTC.EXEを使ってTTFファイルを抽出できる。(TTSDK-TTC-BREAKTTC.EXE / MSのもので、安全) 2.TTFファイルをDesktopとかに置く。 3.iReportでの作業ツール→オプション→iReport→Fontsで、右側のInstall Fontをクリック。Browseをクリックし、用意したTTFファイルを選択→次へ Family Nameはそのままで、Font detailsも、別になければ追加しなくてもいい。 PDF detailsではPDF Encoding : Identity-H(Unicode with horizontal writi..