Based on the Poi demo, the effect is pretty good. Let me share it with you. Let’s take a look at the effect first.
The effect is basically the same, here is how to do it
1. Processing of merged cells
/**
* Process the merged cells according to the merged output content
* @param formatAsString
*/
private void handlerMergedString(String formatAsString) {
String[] strArr = formatAsString.split( ":" );
int startCol = strArr[0].charAt(0) - 65;
int endCol = strArr[1].charAt(0) - 65;int endRol = Integer.valueOf(strArr[1].substring(1));
mergedCache. put(startRol "_" startCol, new Integer[] { endRol - startRol 1,
endCol - startCol 1});
for (int i = startRol; i for (int j = startCol; j notNeedCread.add(i "_" j);
}
}
notNeedCread.remove(startRol "_" startCol);
}
Store the merged cells of the entire sheet, and then conveniently When you decide, just write rowspan and colsopan for td, which is relatively simple
2. CSS settings
private void styleContents(CellStyle style) {
if (style.getAlignment() != 2) {
styleOut( "text-align" , style.getAlignment(), ALIGN );
styleOut( "vertical-align" , style.getAlignment(), VERTICAL_ALIGN);
}
}
private void fontStyle(Font font) {
if (font.getBoldweight() >=Font.BOLDWEIGHT_BOLD)
out.format( " font-weight: bold;%n" );
if (font.getItalic())
out.format( " font-style: italic;%n" );
out.format( " font-family: %s;%n" , font.getFontName());
int fontheight = font.getFontHeightInPoints();
if (fontheight == 9) {
fontheight = 10;
}
out.format( " font-size: %dpt;%n" , fontheight);
helper.styleColor(out, "color" , getColor(font));
}
Get the value from cellStyle, and then fill it in the css, already font css, this concept needs to be distinguished between font and style because of the complex units behind it The font needs to be set iteratively. In addition,
There are many different things in version 03 and 07, which need to be set separately
3. Obtaining the value--more important and complex
public String getHtmlValue(Cell cell) {
if (Cell.CELL_TYPE_BOOLEAN == cell.getCellType()
|| Cell.CELL_TY PE_NUMERIC = = cell.getCellType()) {
cell.setCellType(Cell.CELL_TYPE_STRING);
return cell.getStringCellValue();
else } if (Cell.CELL_TYPE_STRING = = cell.getCellType()) {
if (cell.getRichStringCellValue().numFormattingRuns() == 0) {
return XmlEscapers.xmlContentEscaper().escape(cell.get StringCellValue() );
} else if (is07) {
{ getHSSFRichString((HSSFRichTextString) cell.getRichStringCellValue());
}
Determine the cell type, and then set the value. If it is String, you need to determine whether it is complex text. If so, you need to process it according to 03 and 07 respectively, iterate the column type list and then output
Overall, it’s much easier than you think
How to use --- only one sheet can be output
/**
* Excel becomes the interface
* @author JueYue
*/
public final class ExcelToHtmlUtil {
private ExcelToHtmlUtil() {
}
/**
* Convert to Table
* @param wb Excel
* @return
*/
public static String toTableHtml(Workbook wb) {
return new ExcelToHtmlServer(wb, false , 0).printPage();
}
/**
* Convert to Table
* @param wb Excel
* @param sheetNum sheetNum
* @return
*/
public static String toTableHtml(Workbook wb, int sheetNum) {
return new ExcelToHtmlServer(wb, false , sheetNum).printPage();
}
/**
* Convert to complete interface
* @param wb Excel
* @param sheetNum sheetNum
* @return
*/
public static String toAllHtml(Workbook wb) {
return new ExcelToHtmlServer(wb, true , 0).printPage();
}
/**
* Convert to complete interface
* @param wb Excel
* @param sheetNum sheetNum
* @return
*/
public static String toAllHtml(Workbook wb, int sheetNum) {
return new ExcelToHtmlServer(wb, true , sheetNum).printPage();
}
}
源码地址EasyPoi

HTMLattributesarecrucialinwebdevelopmentforcontrollingbehavior,appearance,andfunctionality.Theyenhanceinteractivity,accessibility,andSEO.Forexample,thesrcattributeintagsimpactsSEO,whileonclickintagsaddsinteractivity.Touseattributeseffectively:1)Usese

The alt attribute is an important part of the tag in HTML and is used to provide alternative text for images. 1. When the image cannot be loaded, the text in the alt attribute will be displayed to improve the user experience. 2. Screen readers use the alt attribute to help visually impaired users understand the content of the picture. 3. Search engines index text in the alt attribute to improve the SEO ranking of web pages.

The roles of HTML, CSS and JavaScript in web development are: 1. HTML is used to build web page structure; 2. CSS is used to beautify the appearance of web pages; 3. JavaScript is used to achieve dynamic interaction. Through tags, styles and scripts, these three together build the core functions of modern web pages.

Setting the lang attributes of a tag is a key step in optimizing web accessibility and SEO. 1) Set the lang attribute in the tag, such as. 2) In multilingual content, set lang attributes for different language parts, such as. 3) Use language codes that comply with ISO639-1 standards, such as "en", "fr", "zh", etc. Correctly setting the lang attribute can improve the accessibility of web pages and search engine rankings.

HTMLattributesareessentialforenhancingwebelements'functionalityandappearance.Theyaddinformationtodefinebehavior,appearance,andinteraction,makingwebsitesinteractive,responsive,andvisuallyappealing.Attributeslikesrc,href,class,type,anddisabledtransform

TocreatealistinHTML,useforunorderedlistsandfororderedlists:1)Forunorderedlists,wrapitemsinanduseforeachitem,renderingasabulletedlist.2)Fororderedlists,useandfornumberedlists,customizablewiththetypeattributefordifferentnumberingstyles.

HTML is used to build websites with clear structure. 1) Use tags such as, and define the website structure. 2) Examples show the structure of blogs and e-commerce websites. 3) Avoid common mistakes such as incorrect label nesting. 4) Optimize performance by reducing HTTP requests and using semantic tags.

ToinsertanimageintoanHTMLpage,usethetagwithsrcandaltattributes.1)UsealttextforaccessibilityandSEO.2)Implementsrcsetforresponsiveimages.3)Applylazyloadingwithloading="lazy"tooptimizeperformance.4)OptimizeimagesusingtoolslikeImageOptimtoreduc


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

Zend Studio 13.0.1
Powerful PHP integrated development environment

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
