Apache POI Word - Fronteiras
Neste capítulo, você aprenderá como aplicar a borda a um parágrafo usando a programação Java.
Aplicando Borda
O código a seguir é usado para aplicar bordas em um documento -
import java.io.File;
import java.io.FileOutputStream;
import org.apache.poi.xwpf.usermodel.Borders;
import org.apache.poi.xwpf.usermodel.XWPFDocument;
import org.apache.poi.xwpf.usermodel.XWPFParagraph;
import org.apache.poi.xwpf.usermodel.XWPFRun;
public class ApplyingBorder {
public static void main(String[] args)throws Exception {
//Blank Document
XWPFDocument document = new XWPFDocument();
//Write the Document in file system
FileOutputStream out = new FileOutputStream(new File("applyingborder.docx"));
//create paragraph
XWPFParagraph paragraph = document.createParagraph();
//Set bottom border to paragraph
paragraph.setBorderBottom(Borders.BASIC_BLACK_DASHES);
//Set left border to paragraph
paragraph.setBorderLeft(Borders.BASIC_BLACK_DASHES);
//Set right border to paragraph
paragraph.setBorderRight(Borders.BASIC_BLACK_DASHES);
//Set top border to paragraph
paragraph.setBorderTop(Borders.BASIC_BLACK_DASHES);
XWPFRun run = paragraph.createRun();
run.setText("At tutorialspoint.com, we strive hard to " +
"provide quality tutorials for self-learning " +
"purpose in the domains of Academics, Information " +
"Technology, Management and Computer Programming " +
"Languages.");
document.write(out);
out.close();
System.out.println("applyingborder.docx written successully");
}
}
Salve o código acima em um arquivo chamado ApplyingBorder.java, compile e execute-o a partir do prompt de comando da seguinte forma -
$javac ApplyingBorder.java
$java ApplyingBorder
Se o seu sistema estiver configurado com a biblioteca POI, ele irá compilar e executar para gerar um documento Word chamado applyingborder.docx em seu diretório atual e exiba a seguinte saída -
applyingborder.docx written successfully
o applyingborder.docx arquivo tem a seguinte aparência -