回答編集履歴
1
v5\.2\.0での検証結果を追記しました。
test
CHANGED
@@ -127,3 +127,287 @@
|
|
127
127
|
考慮事項が少なくなり問題点がはっきりします。また、こういったサービスでも情報公開しやすくなり、回答もつきやすいかと思います。
|
128
128
|
|
129
129
|
* http://blogs.wankuma.com/nagise/archive/2007/12/02/111385.aspx
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
---
|
134
|
+
|
135
|
+
|
136
|
+
|
137
|
+
## 追記
|
138
|
+
|
139
|
+
|
140
|
+
|
141
|
+
jasperreports 5.2.0で検証しました。
|
142
|
+
|
143
|
+
* macでの検証
|
144
|
+
|
145
|
+
* 日本語フォントはIPAフォント
|
146
|
+
|
147
|
+
となりますが、動作しました。
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
ソースを記載します。
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
```Java
|
156
|
+
|
157
|
+
package local.sample.report.servlet.pdf;
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
import java.io.IOException;
|
162
|
+
|
163
|
+
import java.io.InputStream;
|
164
|
+
|
165
|
+
import java.util.HashMap;
|
166
|
+
|
167
|
+
import java.util.Map;
|
168
|
+
|
169
|
+
|
170
|
+
|
171
|
+
import javax.servlet.ServletException;
|
172
|
+
|
173
|
+
import javax.servlet.ServletOutputStream;
|
174
|
+
|
175
|
+
import javax.servlet.annotation.WebServlet;
|
176
|
+
|
177
|
+
import javax.servlet.http.HttpServlet;
|
178
|
+
|
179
|
+
import javax.servlet.http.HttpServletRequest;
|
180
|
+
|
181
|
+
import javax.servlet.http.HttpServletResponse;
|
182
|
+
|
183
|
+
|
184
|
+
|
185
|
+
import org.slf4j.Logger;
|
186
|
+
|
187
|
+
import org.slf4j.LoggerFactory;
|
188
|
+
|
189
|
+
|
190
|
+
|
191
|
+
import net.sf.jasperreports.engine.JREmptyDataSource;
|
192
|
+
|
193
|
+
import net.sf.jasperreports.engine.JRException;
|
194
|
+
|
195
|
+
import net.sf.jasperreports.engine.JasperCompileManager;
|
196
|
+
|
197
|
+
import net.sf.jasperreports.engine.JasperExportManager;
|
198
|
+
|
199
|
+
import net.sf.jasperreports.engine.JasperFillManager;
|
200
|
+
|
201
|
+
import net.sf.jasperreports.engine.JasperPrint;
|
202
|
+
|
203
|
+
import net.sf.jasperreports.engine.JasperReport;
|
204
|
+
|
205
|
+
|
206
|
+
|
207
|
+
/**
|
208
|
+
|
209
|
+
* Servlet implementation class ReportLinebreakServlet
|
210
|
+
|
211
|
+
*/
|
212
|
+
|
213
|
+
@WebServlet(name = "ReportLinebreakServlet", urlPatterns = { "/lbreport" })
|
214
|
+
|
215
|
+
public class ReportLinebreakServlet extends HttpServlet {
|
216
|
+
|
217
|
+
|
218
|
+
|
219
|
+
// SUID
|
220
|
+
|
221
|
+
private static final long serialVersionUID = 74432808028667034L;
|
222
|
+
|
223
|
+
|
224
|
+
|
225
|
+
// Logger
|
226
|
+
|
227
|
+
private static final Logger log = LoggerFactory.getLogger(ReportLinebreakServlet.class);
|
228
|
+
|
229
|
+
|
230
|
+
|
231
|
+
/** Jasperファイル */
|
232
|
+
|
233
|
+
private static final String JRXML = "/report/34802.jrxml";
|
234
|
+
|
235
|
+
|
236
|
+
|
237
|
+
|
238
|
+
|
239
|
+
/**
|
240
|
+
|
241
|
+
* @see HttpServlet#HttpServlet()
|
242
|
+
|
243
|
+
*/
|
244
|
+
|
245
|
+
public ReportLinebreakServlet() {
|
246
|
+
|
247
|
+
super();
|
248
|
+
|
249
|
+
}
|
250
|
+
|
251
|
+
|
252
|
+
|
253
|
+
|
254
|
+
|
255
|
+
/**
|
256
|
+
|
257
|
+
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
|
258
|
+
|
259
|
+
*/
|
260
|
+
|
261
|
+
protected void doGet(HttpServletRequest request, HttpServletResponse response)
|
262
|
+
|
263
|
+
throws ServletException, IOException {
|
264
|
+
|
265
|
+
|
266
|
+
|
267
|
+
// パラメータ作成
|
268
|
+
|
269
|
+
Map<String, Object> parameters = new HashMap<String, Object>();
|
270
|
+
|
271
|
+
parameters.put("text", "”JAVAからセットしました。”改行されて、表示される、といいですね。");
|
272
|
+
|
273
|
+
|
274
|
+
|
275
|
+
try {
|
276
|
+
|
277
|
+
|
278
|
+
|
279
|
+
try (InputStream template = getClass().getResourceAsStream(JRXML)) {
|
280
|
+
|
281
|
+
|
282
|
+
|
283
|
+
// PDF生成
|
284
|
+
|
285
|
+
JasperReport report = JasperCompileManager.compileReport(template);
|
286
|
+
|
287
|
+
JasperPrint jasperPrint = JasperFillManager.fillReport(report, parameters, new JREmptyDataSource());
|
288
|
+
|
289
|
+
|
290
|
+
|
291
|
+
// 帳票のバイト化
|
292
|
+
|
293
|
+
byte[] bytes = JasperExportManager.exportReportToPdf(jasperPrint);
|
294
|
+
|
295
|
+
|
296
|
+
|
297
|
+
// レスポンス出力
|
298
|
+
|
299
|
+
response.setContentType("application/pdf");
|
300
|
+
|
301
|
+
response.setContentLength(bytes.length);
|
302
|
+
|
303
|
+
|
304
|
+
|
305
|
+
// PDF出力
|
306
|
+
|
307
|
+
ServletOutputStream out = response.getOutputStream();
|
308
|
+
|
309
|
+
out.write(bytes);
|
310
|
+
|
311
|
+
out.flush();
|
312
|
+
|
313
|
+
out.close();
|
314
|
+
|
315
|
+
}
|
316
|
+
|
317
|
+
}
|
318
|
+
|
319
|
+
catch (JRException e) {
|
320
|
+
|
321
|
+
log.error("JRException");
|
322
|
+
|
323
|
+
throw new ServletException(e);
|
324
|
+
|
325
|
+
}
|
326
|
+
|
327
|
+
}
|
328
|
+
|
329
|
+
}
|
330
|
+
|
331
|
+
|
332
|
+
|
333
|
+
```
|
334
|
+
|
335
|
+
|
336
|
+
|
337
|
+
```xml
|
338
|
+
|
339
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
340
|
+
|
341
|
+
<!-- Created with Jaspersoft Studio version 6.2.0.final using JasperReports Library version 6.2.0 -->
|
342
|
+
|
343
|
+
<!-- 2016-05-13T15:57:17 -->
|
344
|
+
|
345
|
+
<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="34802" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="9b8569be-8ebb-4e33-9141-99648267c2a5">
|
346
|
+
|
347
|
+
<property name="com.jaspersoft.studio.data.defaultdataadapter" value="One Empty Record"/>
|
348
|
+
|
349
|
+
<parameter name="text" class="java.lang.String"/>
|
350
|
+
|
351
|
+
<queryString>
|
352
|
+
|
353
|
+
<![CDATA[]]>
|
354
|
+
|
355
|
+
</queryString>
|
356
|
+
|
357
|
+
<detail>
|
358
|
+
|
359
|
+
<band height="125" splitType="Stretch">
|
360
|
+
|
361
|
+
<textField>
|
362
|
+
|
363
|
+
<reportElement key="" x="0" y="10" width="200" height="50" uuid="e5428b67-fc47-400b-8853-137ec78fa119">
|
364
|
+
|
365
|
+
<property name="com.jaspersoft.studio.unit.x" value="pixel"/>
|
366
|
+
|
367
|
+
<property name="com.jaspersoft.studio.unit.y" value="pixel"/>
|
368
|
+
|
369
|
+
<property name="com.jaspersoft.studio.unit.width" value="pixel"/>
|
370
|
+
|
371
|
+
<property name="com.jaspersoft.studio.unit.height" value="pixel"/>
|
372
|
+
|
373
|
+
</reportElement>
|
374
|
+
|
375
|
+
<textElement>
|
376
|
+
|
377
|
+
<font fontName="IPA ゴシック"/>
|
378
|
+
|
379
|
+
</textElement>
|
380
|
+
|
381
|
+
<textFieldExpression><![CDATA["”テストです。”ほげほげ、ふがふが、ほげほげ、ふがふが、ほげほげ、ふがふが、"]]></textFieldExpression>
|
382
|
+
|
383
|
+
</textField>
|
384
|
+
|
385
|
+
<textField>
|
386
|
+
|
387
|
+
<reportElement x="280" y="10" width="200" height="50" uuid="6b829219-af14-4bdb-8564-bc5153e08cb4">
|
388
|
+
|
389
|
+
<property name="com.jaspersoft.studio.unit.y" value="pixel"/>
|
390
|
+
|
391
|
+
<property name="com.jaspersoft.studio.unit.width" value="pixel"/>
|
392
|
+
|
393
|
+
<property name="com.jaspersoft.studio.unit.height" value="pixel"/>
|
394
|
+
|
395
|
+
</reportElement>
|
396
|
+
|
397
|
+
<textElement>
|
398
|
+
|
399
|
+
<font fontName="IPA ゴシック"/>
|
400
|
+
|
401
|
+
</textElement>
|
402
|
+
|
403
|
+
<textFieldExpression><![CDATA[$P{text}]]></textFieldExpression>
|
404
|
+
|
405
|
+
</textField>
|
406
|
+
|
407
|
+
</band>
|
408
|
+
|
409
|
+
</detail>
|
410
|
+
|
411
|
+
</jasperReport>
|
412
|
+
|
413
|
+
```
|