الحصول على سلسلة HTML5 من الخلية
سيناريوهات الاستخدام المحتملة
تقوم Aspose.Cells بإرجاع سلسلة HTML للخلية باستخدام الطريقة getHtmlString(boolean html5). إذا قمت بتمرير false كمعلمة، فسترجع لك نص HTML عادي ولكن إذا قمت بتمرير true كمعلمة، فسترجع سلسلة HTML5.
الحصول على سلسلة HTML5 من الخلية
الكود العيني التالي يقوم بإنشاء كائن دفتر العمل وإضافة نص معين في الخلية A1 من ورقة العمل الأولى. ثم يحصل على سلسلة HTML عادية وسلسلة HTML5 من الخلية A1 باستخدام الطريقة getHtmlString(boolean html5) ويقوم بطباعتها على وحدة التحكم.
الكود المثالي
// 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); |
مخرجات الوحدة
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>