Apache POI PPT - Criação de hiperlinks
Neste capítulo, você aprenderá como criar hiperlinks em uma apresentação.
Criação de hiperlinks
Você pode ler os hiperlinks em uma apresentação usando o createHyperlink() método do XSLFTextRunclasse. Siga o procedimento abaixo para criar um hiperlink em uma apresentação.
Crie uma apresentação vazia usando o XMLSlideShow classe como mostrado abaixo -
XMLSlideShow ppt = new XMLSlideShow();
Crie um slide vazio e crie uma caixa de texto e corpo do slide usando corpo e layout de conteúdo.
//create an empty presentation
XSLFSlideMaster slideMaster = ppt.getSlideMasters()[0];
//creating a slide with title and content layout
XSLFSlideLayout slidelayout = slideMaster.getLayout(SlideLayout.TITLE_AND_CONTENT);
XSLFSlide slide = ppt.createSlide(slidelayout);
//selection of body place holder
XSLFTextShape body = slide.getPlaceholder(1);
//clear the existing text in the slide
body.clearText();
Crie um objeto de execução de texto e defina o texto como mostrado abaixo -
XSLFTextRun textRun = body.addNewTextParagraph().addNewTextRun();
textRun.setText("Tutorials point");
Crie um hiperlink usando o createHyperlink() método do XSLFTextRun classe como mostrado abaixo -
XSLFHyperlink link = textRun.createHyperlink();
Defina o endereço do link para o hiperlink usando o setAddress() método de XSLFHyperlink classe como mostrado abaixo -
link.setAddress("http://www.tutorialspoint.com/");
A seguir está o programa completo para criar hiperlink em uma apresentação -
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import org.apache.poi.xslf.usermodel.SlideLayout;
import org.apache.poi.xslf.usermodel.XMLSlideShow;
import org.apache.poi.xslf.usermodel.XSLFHyperlink;
import org.apache.poi.xslf.usermodel.XSLFSlide;
import org.apache.poi.xslf.usermodel.XSLFSlideLayout;
import org.apache.poi.xslf.usermodel.XSLFSlideMaster;
import org.apache.poi.xslf.usermodel.XSLFTextRun;
import org.apache.poi.xslf.usermodel.XSLFTextShape;
public class CreatingHyperlinks {
public static void main(String args[]) throws IOException {
//create an empty presentation
XMLSlideShow ppt = new XMLSlideShow();
//getting the slide master object
XSLFSlideMaster slideMaster = ppt.getSlideMasters()[0];
//select a layout from specified list
XSLFSlideLayout slidelayout = slideMaster.getLayout(SlideLayout.TITLE_AND_CONTENT);
//creating a slide with title and content layout
XSLFSlide slide = ppt.createSlide(slidelayout);
//selection of title place holder
XSLFTextShape body = slide.getPlaceholder(1);
//clear the existing text in the slid
body.clearText();
//adding new paragraph
XSLFTextRun textRun = body.addNewTextParagraph().addNewTextRun();
//setting the text
textRun.setText("Tutorials point");
//creating the hyperlink
XSLFHyperlink link = textRun.createHyperlink();
//setting the link address
link.setAddress("http://www.tutorialspoint.com/");
//create the file object
File file = new File("hyperlink.pptx");
FileOutputStream out = new FileOutputStream(file);
//save the changes in a file
ppt.write(out);
System.out.println("slide cretated successfully");
out.close();
}
}
Salve o código Java acima como CreatingHyperlinks.javae, em seguida, compile e execute-o no prompt de comando da seguinte maneira -
$javac CreatingHyperlinks.java
$java CreatingHyperlinks
Ele irá compilar e executar para gerar a seguinte saída -
slide cretated successfully
O slide recém-adicionado com o hiperlink em seu corpo tem a seguinte aparência -