HTML5 String aus Zelle abrufen
Mögliche Verwendungsszenarien
Aspose.Cells liefert den HTML-String der Zelle mithilfe der Methode getHtmlString(boolean html5) zurück. Wenn Sie false als Parameter übergeben, erhalten Sie normalen HTML-Code, aber wenn Sie true als Parameter übergeben, erhalten Sie HTML5-String zurück.
Holen Sie sich HTML5-String aus der Zelle
Der folgende Beispielcode erstellt ein Arbeitsmappenobjekt und fügt etwas Text in Zelle A1 des ersten Arbeitsblatts ein. Dann wird der normale HTML- und HTML5-String aus Zelle A1 mithilfe der Methode getHtmlString(boolean html5) abgerufen und auf der Konsole gedruckt.
Beispielcode
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java | |
//Create workbook. | |
Workbook wb = new Workbook(); | |
//Access first worksheet. | |
Worksheet ws = wb.getWorksheets().get(0); | |
//Access cell A1 and put some text inside it. | |
Cell cell = ws.getCells().get("A1"); | |
cell.putValue("This is some text."); | |
//Get the Normal and Html5 strings. | |
String strNormal = cell.getHtmlString(false); | |
String strHtml5 = cell.getHtmlString(true); | |
//Print the Normal and Html5 strings on console. | |
System.out.println("Normal:\r\n" + strNormal); | |
System.out.println(); | |
System.out.println("Html5:\r\n" + strHtml5); |
Konsolenausgabe
Normal:
<Font Style="FONT-FAMILY: Arial;FONT-SIZE: 10pt;COLOR: #000000;">This is some text.</Font>
Html5:
<div Style="FONT-FAMILY: Arial;FONT-SIZE: 10pt;COLOR: #000000;">This is some text.</div>