gpt4 book ai didi

java - 删除多余的空行

转载 作者:行者123 更新时间:2023-12-01 09:31:18 26 4
gpt4 key购买 nike

我正在java中使用itext API来创建和打印PDF文档中的动态内容。

下面是我需要在PDF文档中添加的动态内容。

This is first line.
This is second line.

This is third printed line.

This is fourth printed line.

#ACC004342-123





More information:
This is fifth printed line.
#ACC004342-123

This is Sixth printed line.
Some information goes here.

在上面显示的示例文本中,它们是 #ACC004342-123 和更多信息:我需要删除的行之间的间隙。

    public static File createInformationPdf(final List<MyDocumentType> content) throws AccServiceException
{
Document document = null;
FileOutputStream fos = null;

try
{
final String prefix = "letter";
final File myPDF = File.createTempFile(prefix, ".pdf");
document = new Document(PageSize.LETTER);

fos = new FileOutputStream(temporaryPDF);

PdfWriter.getInstance(document, fos);
document.open();

Font font = new Font(Font.FontFamily.COURIER,10);
for (final MyDocumentType myDocument : content)
{
if (myDocument.getDocumentines() != null)
{
final DocumentLinesType documentLines = myDocument.getDocumentLines();
for (final String line : documentLines.getDocumentLine())
{
document.add(new Paragraph(line,font));
}
}
}
document.close();
return temporaryPDF;
}
catch (Exception e)
{
//log the exception
}

}

PS:上面是我的java代码,我只是想删除#ACC004342-123和更多信息:行之间存在的更多空白行,并在它们之间给出一个空白行。当我从 web 服务调用获取内容时,我需要在我的 java 代码中进行处理。希望我现在清楚了。谢谢。

最佳答案

您似乎希望在每次添加包含 #ACC 的行时获得一些额外的空间。但是,根据您之前的问题 limited content ,我们还知道,如果包含 #ACC 的行是页面上的最后一行,您希望避免添加此额外的空格。

您可以通过添加额外的段落来添加空行。这不是一个好主意,因为这意味着总是添加空行,即使在您不想要的情况下也是如此。

使用 setSpacingAfter() 方法要好得多。例如:

float spaceBetweenLines = 12;
Paragraph p;
for (final String singleLine : document.getSingleLine()) {
p = new Paragraph(spaceBetweenLines, singleLine, font);
if (singleLine.contains("#ACC")) {
p.setSpacingAfter(spaceBetweenLines);
}
if (!singleLine().isEmpty())
document.add(p);
}

此代码比您设置标志的代码更容易阅读和理解,而您设置标志的原因对于任何阅读您的代码(或必须维护您的代码)的人来说都很难理解。

实际上:还是很难理解你的问题,因为你在添加一个空行的同时又要求删除一个空行。第三方很难理解您为什么要添加空行。

使用诸如 setSpacingAfter() 之类的方法的优点在于,它仅在必要时添加额外的空间。如果 Paragraph 是文档的最后一段,则不添加空格。如果它是新页面之前的最后一段,则不会添加空格(并且下一页上不会有不必要的额外空间,这是您在上一个问题 limited content 中描述的问题)。

或者也许我误解了这个问题。也许您想在段落之前添加一些额外的空格。。在这种情况下,您可以使用 setSpacingBefore() 方法:

float spaceBetweenLines = 12;
Paragraph p;
for (final String singleLine : document.getSingleLine()) {
p = new Paragraph(spaceBetweenLines, singleLine, font);
if (singleLine.contains("#ACC")) {
p.setSpacingBefore(spaceBetweenLines);
}
if (!singleLine().isEmpty())
document.add(p);
}

在这种情况下,会在包含 #ACC 的每一行之前添加额外的空格,除非该行是页面上的第一行。在这种情况下,不会添加不需要的空白。

如果这不能回答您的问题,请重新表述您的问题。它已经比你之前的问题更清楚了,但是第三方仍然需要做大量的猜测工作才能完全理解你所问的内容。

关于java - 删除多余的空行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39378996/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com