• 导入的JAR包

    1. <dependency>
    2. <groupId>org.apache.poi</groupId>
    3. <artifactId>poi-scratchpad</artifactId>
    4. <version>3.14-beta1</version>
    5. </dependency>
    6. <dependency>
    7. <groupId>org.apache.commons</groupId>
    8. <artifactId>commons-lang3</artifactId>
    9. <version>3.4</version>
    10. </dependency>
    11. <dependency>
    12. <groupId>org.apache.poi</groupId>
    13. <artifactId>poi-ooxml</artifactId>
    14. <version>3.14-beta1</version>
    15. </dependency>
    16. <dependency>
    17. <groupId>org.apache.poi</groupId>
    18. <artifactId>ooxml-schemas</artifactId>
    19. <version>1.3</version>
    20. </dependency>
    21. <dependency>
    22. <groupId>org.apache.xmlbeans</groupId>
    23. <artifactId>xmlbeans</artifactId>
    24. <version>2.6.0</version>
    25. </dependency>
    26. <dependency>
    27. <groupId>fr.opensagres.xdocreport</groupId>
    28. <artifactId>xdocreport</artifactId>
    29. <version>1.0.6</version>
    30. </dependency>
  • 启动类:

    1. import com.example.demo.util.ExcelToHTML;
    2. import com.example.demo.util.POIWordUtils;
    3. import java.io.FileNotFoundException;
    4. /**
    5. * 文件预览
    6. *
    7. */
    8. public class FilePreviewController {
    9. public static void main(String[] args) throws FileNotFoundException {
    10. String fileName = "1102.docx";
    11. String filePath = "E:\\";
    12. String newfileName = "1103.html";
    13. String fileType = fileName.substring(fileName.lastIndexOf("."));
    14. String name = fileName.substring(0, fileName.lastIndexOf("."));
    15. //转换 word 文件
    16. if (fileType != null && (".doc".equals(fileType.toLowerCase()) || ".docx".equals(fileType.toLowerCase() ))){
    17. POIWordUtils.docConversionToHtml( newfileName, fileName, filePath);
    18. }
    19. //转换 excel 文件
    20. if (fileType!= null && (".xlsx".equals(fileType.toLowerCase()) || ".xls".equals(fileType.toLowerCase() ))){
    21. ExcelToHTML.readExcelToHtml( filePath+fileName,filePath+newfileName, true);
    22. }
    23. }
    24. }
  • word 转换HTML类

    1. package com.example.demo.util;
    2. import org.apache.commons.lang3.StringUtils;
    3. import org.apache.poi.hwpf.HWPFDocument;
    4. import org.apache.poi.hwpf.converter.WordToHtmlConverter;
    5. import org.apache.poi.xwpf.converter.core.BasicURIResolver;
    6. import org.apache.poi.xwpf.converter.core.FileImageExtractor;
    7. import org.apache.poi.xwpf.converter.xhtml.XHTMLConverter;
    8. import org.apache.poi.xwpf.converter.xhtml.XHTMLOptions;
    9. import org.apache.poi.xwpf.usermodel.XWPFDocument;
    10. import org.slf4j.Logger;
    11. import org.slf4j.LoggerFactory;
    12. import org.w3c.dom.Document;
    13. import javax.xml.parsers.DocumentBuilderFactory;
    14. import javax.xml.transform.OutputKeys;
    15. import javax.xml.transform.Transformer;
    16. import javax.xml.transform.TransformerFactory;
    17. import javax.xml.transform.dom.DOMSource;
    18. import javax.xml.transform.stream.StreamResult;
    19. import java.io.*;
    20. import java.util.HashMap;
    21. import java.util.Map;
    22. public class POIWordUtils {
    23. private static final Logger log = LoggerFactory.getLogger(POIWordUtils.class.getName());
    24. /**
    25. * docx to html
    26. *
    27. * @param in 输入流
    28. * @return
    29. * @throws IOException
    30. */
    31. public static InputStream docxToHtml(InputStream in, String filePath) {
    32. XWPFDocument document = null;
    33. try {
    34. document = new XWPFDocument(in);
    35. XHTMLOptions options = XHTMLOptions.create();
    36. options.setIgnoreStylesIfUnused(false);
    37. options.setFragment(true);
    38. filePath = filePath+"image"+File.separator;
    39. options.setExtractor(new FileImageExtractor(new File(filePath)));
    40. options.URIResolver(new BasicURIResolver("image"));
    41. ByteArrayOutputStream out = new ByteArrayOutputStream();
    42. XHTMLConverter.getInstance().convert(document, out, options);
    43. return new ByteArrayInputStream(out.toByteArray());
    44. } catch (IOException e) {
    45. log.error(e.getMessage(), e);
    46. }
    47. return in;
    48. }
    49. /**
    50. * doc to html
    51. *
    52. * @param in
    53. * @return
    54. * @throws Exception
    55. */
    56. public static InputStream docToHtml(InputStream in) {
    57. try {
    58. HWPFDocument wordDocument = new HWPFDocument(in);
    59. WordToHtmlConverter wordToHtmlConverter = new WordToHtmlConverter(
    60. DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument());
    61. wordToHtmlConverter.processDocument(wordDocument);
    62. Document htmlDocument = wordToHtmlConverter.getDocument();
    63. ByteArrayOutputStream outStream = new ByteArrayOutputStream();
    64. DOMSource domSource = new DOMSource(htmlDocument);
    65. StreamResult streamResult = new StreamResult(outStream);
    66. TransformerFactory factory = TransformerFactory.newInstance();
    67. Transformer serializer = factory.newTransformer();
    68. serializer.setOutputProperty(OutputKeys.ENCODING, "utf-8");
    69. serializer.setOutputProperty(OutputKeys.INDENT, "yes");
    70. serializer.setOutputProperty(OutputKeys.METHOD, "html");
    71. serializer.transform(domSource, streamResult);
    72. outStream.close();
    73. return new ByteArrayInputStream(outStream.toByteArray());
    74. } catch (Exception e) {
    75. log.error(e.getMessage(), e);
    76. }
    77. return in;
    78. }
    79. public static InputStream docToHtml(Map<String, Object> request, InputStream in) {
    80. String fileName = (String) request.get("name");
    81. if (StringUtils.isEmpty(fileName)) {
    82. return in;
    83. }
    84. String extensionName = fileName.substring(fileName.lastIndexOf(".") + 1, fileName.length());
    85. String prevName = fileName.substring(0, fileName.lastIndexOf("."));
    86. if ("html".equalsIgnoreCase(extensionName)) {
    87. return in;
    88. }
    89. if ("doc".equalsIgnoreCase(extensionName)) {
    90. request.put("name", prevName + ".html");
    91. return docToHtml(in);
    92. }
    93. if ("docx".equalsIgnoreCase(extensionName)) {
    94. request.put("name", prevName + ".html");
    95. return docxToHtml(in, (String)request.get("filePath"));
    96. }
    97. return in;
    98. }
    99. public static void inputStreamToFile(InputStream inputStream, String newPath) {
    100. OutputStream outputStream = null;
    101. try {
    102. File file = new File(newPath);
    103. outputStream = new FileOutputStream(file);
    104. int bytesWritten = 0;
    105. int byteCount = 0;
    106. byte[] bytes = new byte[1024];
    107. while ((byteCount = inputStream.read(bytes)) != -1) {
    108. outputStream.write(bytes, bytesWritten, byteCount);
    109. }
    110. System.out.println("Done!");
    111. } catch (IOException e) {
    112. e.printStackTrace();
    113. } finally {
    114. if (inputStream != null) {
    115. try {
    116. inputStream.close();
    117. } catch (IOException e) {
    118. e.printStackTrace();
    119. }
    120. }
    121. if (outputStream != null) {
    122. try {
    123. outputStream.close();
    124. } catch (IOException e) {
    125. e.printStackTrace();
    126. }
    127. }
    128. }
    129. }
    130. public static void docConversionToHtml( String newfileName, String fileName, String filePath) throws FileNotFoundException {
    131. Map<String, Object> paramsMap = new HashMap<String, Object>();
    132. paramsMap.put("name", fileName);
    133. paramsMap.put("filePath", filePath);
    134. InputStream in = new FileInputStream(filePath + fileName);// 读取文件的数据。
    135. InputStream result = POIWordUtils.docToHtml(paramsMap, in);
    136. POIWordUtils.inputStreamToFile(result, filePath+newfileName);
    137. }
    138. }
  • Excel 转换成HTML

    1. package com.example.demo.util;
    2. import org.apache.poi.hssf.usermodel.*;
    3. import org.apache.poi.hssf.util.HSSFColor;
    4. import org.apache.poi.ss.usermodel.*;
    5. import org.apache.poi.ss.util.CellRangeAddress;
    6. import org.apache.poi.xssf.usermodel.XSSFCellStyle;
    7. import org.apache.poi.xssf.usermodel.XSSFColor;
    8. import org.apache.poi.xssf.usermodel.XSSFFont;
    9. import org.apache.poi.xssf.usermodel.XSSFWorkbook;
    10. import java.io.*;
    11. import java.text.DecimalFormat;
    12. import java.text.SimpleDateFormat;
    13. import java.util.Date;
    14. import java.util.HashMap;
    15. import java.util.Map;
    16. public class ExcelToHTML {
    17. /**
    18. * @param filePath excel源文件文件的路径
    19. * @param htmlPositon 生成的html文件的路径
    20. * @param isWithStyle 是否需要表格样式 包含 字体 颜色 边框 对齐方式
    21. */
    22. public static String readExcelToHtml(String filePath, String htmlPositon, boolean isWithStyle) {
    23. InputStream is = null;
    24. String htmlExcel = null;
    25. try {
    26. File sourcefile = new File(filePath);
    27. is = new FileInputStream(sourcefile);
    28. Workbook wb = WorkbookFactory.create(is);
    29. if (wb instanceof XSSFWorkbook) { //03版excel处理方法
    30. XSSFWorkbook xWb = (XSSFWorkbook) wb;
    31. htmlExcel = ExcelToHTML.getExcelInfo(xWb, isWithStyle);
    32. } else if (wb instanceof HSSFWorkbook) { //07及10版以后的excel处理方法
    33. HSSFWorkbook hWb = (HSSFWorkbook) wb;
    34. htmlExcel = ExcelToHTML.getExcelInfo(hWb, isWithStyle);
    35. }
    36. writeFile(htmlExcel, htmlPositon);
    37. } catch (Exception e) {
    38. e.printStackTrace();
    39. } finally {
    40. try {
    41. is.close();
    42. } catch (IOException e) {
    43. e.printStackTrace();
    44. }
    45. }
    46. return htmlPositon;
    47. }
    48. private static String getExcelInfo(Workbook wb, boolean isWithStyle) {
    49. StringBuffer sb = new StringBuffer();
    50. Sheet sheet = wb.getSheetAt(0);//获取第一个Sheet的内容
    51. int lastRowNum = sheet.getLastRowNum();
    52. Map<String, String> map[] = getRowSpanColSpanMap(sheet);
    53. sb.append("<table style=\'border-collapse:collapse;\' width=\'100%\'>");
    54. Row row = null; //兼容
    55. Cell cell = null; //兼容
    56. for (int rowNum = sheet.getFirstRowNum(); rowNum <= lastRowNum; rowNum++) {
    57. row = sheet.getRow(rowNum);
    58. if (row == null) {
    59. sb.append("<tr><td ><nobr> </nobr></td></tr>");
    60. continue;
    61. }
    62. sb.append("<tr>");
    63. int lastColNum = row.getLastCellNum();
    64. for (int colNum = 0; colNum < lastColNum; colNum++) {
    65. cell = row.getCell(colNum);
    66. if (cell == null) { //特殊情况 空白的单元格会返回null
    67. sb.append("<td> </td>");
    68. continue;
    69. }
    70. String stringValue = getCellValue(cell);
    71. if (map[0].containsKey(rowNum + "," + colNum)) {
    72. String pointString = map[0].get(rowNum + "," + colNum);
    73. map[0].remove(rowNum + "," + colNum);
    74. int bottomeRow = Integer.valueOf(pointString.split(",")[0]);
    75. int bottomeCol = Integer.valueOf(pointString.split(",")[1]);
    76. int rowSpan = bottomeRow - rowNum + 1;
    77. int colSpan = bottomeCol - colNum + 1;
    78. sb.append("<td rowspan= \'" + rowSpan + "\' colspan= \'" + colSpan + "\' ");
    79. } else if (map[1].containsKey(rowNum + "," + colNum)) {
    80. map[1].remove(rowNum + "," + colNum);
    81. continue;
    82. } else {
    83. sb.append("<td ");
    84. }
    85. //判断是否需要样式
    86. if (isWithStyle) {
    87. dealExcelStyle(wb, sheet, cell, sb);//处理单元格样式
    88. }
    89. sb.append("><nobr>");
    90. if (stringValue == null || "".equals(stringValue.trim())) {
    91. sb.append(" ");
    92. } else {
    93. // 将ascii码为160的空格转换为html下的空格( )
    94. String aaa = stringValue.replace(String.valueOf((char) 160), " ");
    95. sb.append(stringValue.replace(String.valueOf((char) 160), " "));
    96. }
    97. sb.append("</nobr></td>");
    98. }
    99. sb.append("</tr>");
    100. }
    101. sb.append("</table>");
    102. return sb.toString();
    103. }
    104. private static Map<String, String>[] getRowSpanColSpanMap(Sheet sheet) {
    105. Map<String, String> map0 = new HashMap<String, String>();
    106. Map<String, String> map1 = new HashMap<String, String>();
    107. int mergedNum = sheet.getNumMergedRegions();
    108. CellRangeAddress range = null;
    109. for (int i = 0; i < mergedNum; i++) {
    110. range = sheet.getMergedRegion(i);
    111. int topRow = range.getFirstRow();
    112. int topCol = range.getFirstColumn();
    113. int bottomRow = range.getLastRow();
    114. int bottomCol = range.getLastColumn();
    115. map0.put(topRow + "," + topCol, bottomRow + "," + bottomCol);
    116. // System.out.println(topRow + "," + topCol + "," + bottomRow + "," + bottomCol);
    117. int tempRow = topRow;
    118. while (tempRow <= bottomRow) {
    119. int tempCol = topCol;
    120. while (tempCol <= bottomCol) {
    121. map1.put(tempRow + "," + tempCol, "");
    122. tempCol++;
    123. }
    124. tempRow++;
    125. }
    126. map1.remove(topRow + "," + topCol);
    127. }
    128. Map[] map = {map0, map1};
    129. return map;
    130. }
    131. /**
    132. * 获取表格单元格Cell内容
    133. *
    134. * @param cell
    135. * @return
    136. */
    137. private static String getCellValue(Cell cell) {
    138. String result = new String();
    139. switch (cell.getCellType()) {
    140. case Cell.CELL_TYPE_NUMERIC:// 数字类型
    141. if (HSSFDateUtil.isCellDateFormatted(cell)) {// 处理日期格式、时间格式
    142. SimpleDateFormat sdf = null;
    143. if (cell.getCellStyle().getDataFormat() == HSSFDataFormat.getBuiltinFormat("h:mm")) {
    144. sdf = new SimpleDateFormat("HH:mm");
    145. } else {// 日期
    146. sdf = new SimpleDateFormat("yyyy-MM-dd");
    147. }
    148. Date date = cell.getDateCellValue();
    149. result = sdf.format(date);
    150. } else if (cell.getCellStyle().getDataFormat() == 58) {
    151. // 处理自定义日期格式:m月d日(通过判断单元格的格式id解决,id的值是58)
    152. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
    153. double value = cell.getNumericCellValue();
    154. Date date = DateUtil
    155. .getJavaDate(value);
    156. result = sdf.format(date);
    157. } else {
    158. double value = cell.getNumericCellValue();
    159. CellStyle style = cell.getCellStyle();
    160. DecimalFormat format = new DecimalFormat();
    161. String temp = style.getDataFormatString();
    162. // 单元格设置成常规
    163. if (temp.equals("General")) {
    164. format.applyPattern("#");
    165. }
    166. result = format.format(value);
    167. }
    168. break;
    169. case Cell.CELL_TYPE_STRING:// String类型
    170. result = cell.getRichStringCellValue().toString();
    171. break;
    172. case Cell.CELL_TYPE_BLANK:
    173. result = "";
    174. break;
    175. default:
    176. result = "";
    177. break;
    178. }
    179. return result;
    180. }
    181. /**
    182. * 处理表格样式
    183. *
    184. * @param wb
    185. * @param sheet
    186. * @param sb
    187. */
    188. private static void dealExcelStyle(Workbook wb, Sheet sheet, Cell cell, StringBuffer sb) {
    189. CellStyle cellStyle = cell.getCellStyle();
    190. if (cellStyle != null) {
    191. short alignment = cellStyle.getAlignment();
    192. // sb.append("align=\'" + convertAlignToHtml(alignment) + "\' ");//单元格内容的水平对齐方式
    193. short verticalAlignment = cellStyle.getVerticalAlignment();
    194. sb.append("valign=\'" + convertVerticalAlignToHtml(verticalAlignment) + "\' ");//单元格中内容的垂直排列方式
    195. if (wb instanceof XSSFWorkbook) {
    196. XSSFFont xf = ((XSSFCellStyle) cellStyle).getFont();
    197. short boldWeight = xf.getBoldweight();
    198. String align = convertAlignToHtml(alignment);
    199. sb.append("style=\'");
    200. sb.append("font-weight:" + boldWeight + ";"); // 字体加粗
    201. sb.append("font-size: " + xf.getFontHeight() / 2 + "%;"); // 字体大小
    202. int columnWidth = sheet.getColumnWidth(cell.getColumnIndex());
    203. sb.append("width:" + columnWidth + "px;");
    204. sb.append("text-align:" + align + ";");//表头排版样式
    205. XSSFColor xc = xf.getXSSFColor();
    206. if (xc != null && !"".equals(xc)) {
    207. sb.append("color:#" + xc.getARGBHex().substring(2) + ";"); // 字体颜色
    208. }
    209. XSSFColor bgColor = (XSSFColor) cellStyle.getFillForegroundColorColor();
    210. if (bgColor != null && !"".equals(bgColor)) {
    211. sb.append("background-color:#" + bgColor.getARGBHex().substring(2) + ";"); // 背景颜色
    212. }
    213. sb.append(getBorderStyle(0, cellStyle.getBorderTop(), ((XSSFCellStyle) cellStyle).getTopBorderXSSFColor()));
    214. sb.append(getBorderStyle(1, cellStyle.getBorderRight(), ((XSSFCellStyle) cellStyle).getRightBorderXSSFColor()));
    215. sb.append(getBorderStyle(2, cellStyle.getBorderBottom(), ((XSSFCellStyle) cellStyle).getBottomBorderXSSFColor()));
    216. sb.append(getBorderStyle(3, cellStyle.getBorderLeft(), ((XSSFCellStyle) cellStyle).getLeftBorderXSSFColor()));
    217. } else if (wb instanceof HSSFWorkbook) {
    218. HSSFFont hf = ((HSSFCellStyle) cellStyle).getFont(wb);
    219. short boldWeight = hf.getBoldweight();
    220. short fontColor = hf.getColor();
    221. sb.append("style=\'");
    222. HSSFPalette palette = ((HSSFWorkbook) wb).getCustomPalette(); // 类HSSFPalette用于求的颜色的国际标准形式
    223. HSSFColor hc = palette.getColor(fontColor);
    224. sb.append("font-weight:" + boldWeight + ";"); // 字体加粗
    225. sb.append("font-size: " + hf.getFontHeight() / 2 + "%;"); // 字体大小
    226. String align = convertAlignToHtml(alignment);
    227. sb.append("text-align:" + align + ";");//表头排版样式
    228. String fontColorStr = convertToStardColor(hc);
    229. if (fontColorStr != null && !"".equals(fontColorStr.trim())) {
    230. sb.append("color:" + fontColorStr + ";"); // 字体颜色
    231. }
    232. int columnWidth = sheet.getColumnWidth(cell.getColumnIndex());
    233. sb.append("width:" + columnWidth + "px;");
    234. short bgColor = cellStyle.getFillForegroundColor();
    235. hc = palette.getColor(bgColor);
    236. String bgColorStr = convertToStardColor(hc);
    237. if (bgColorStr != null && !"".equals(bgColorStr.trim())) {
    238. sb.append("background-color:" + bgColorStr + ";"); // 背景颜色
    239. }
    240. sb.append(getBorderStyle(palette, 0, cellStyle.getBorderTop(), cellStyle.getTopBorderColor()));
    241. sb.append(getBorderStyle(palette, 1, cellStyle.getBorderRight(), cellStyle.getRightBorderColor()));
    242. sb.append(getBorderStyle(palette, 3, cellStyle.getBorderLeft(), cellStyle.getLeftBorderColor()));
    243. sb.append(getBorderStyle(palette, 2, cellStyle.getBorderBottom(), cellStyle.getBottomBorderColor()));
    244. }
    245. sb.append("\' ");
    246. }
    247. }
    248. /**
    249. * 单元格内容的水平对齐方式
    250. *
    251. * @param alignment
    252. * @return
    253. */
    254. private static String convertAlignToHtml(short alignment) {
    255. String align = "center";
    256. switch (alignment) {
    257. case CellStyle.ALIGN_LEFT:
    258. align = "left";
    259. break;
    260. case CellStyle.ALIGN_CENTER:
    261. align = "center";
    262. break;
    263. case CellStyle.ALIGN_RIGHT:
    264. align = "right";
    265. break;
    266. default:
    267. break;
    268. }
    269. return align;
    270. }
    271. /**
    272. * 单元格中内容的垂直排列方式
    273. *
    274. * @param verticalAlignment
    275. * @return
    276. */
    277. private static String convertVerticalAlignToHtml(short verticalAlignment) {
    278. String valign = "middle";
    279. switch (verticalAlignment) {
    280. case CellStyle.VERTICAL_BOTTOM:
    281. valign = "bottom";
    282. break;
    283. case CellStyle.VERTICAL_CENTER:
    284. valign = "center";
    285. break;
    286. case CellStyle.VERTICAL_TOP:
    287. valign = "top";
    288. break;
    289. default:
    290. break;
    291. }
    292. return valign;
    293. }
    294. private static String convertToStardColor(HSSFColor hc) {
    295. StringBuffer sb = new StringBuffer("");
    296. if (hc != null) {
    297. if (HSSFColor.AUTOMATIC.index == hc.getIndex()) {
    298. return null;
    299. }
    300. sb.append("#");
    301. for (int i = 0; i < hc.getTriplet().length; i++) {
    302. sb.append(fillWithZero(Integer.toHexString(hc.getTriplet()[i])));
    303. }
    304. }
    305. return sb.toString();
    306. }
    307. private static String fillWithZero(String str) {
    308. if (str != null && str.length() < 2) {
    309. return "0" + str;
    310. }
    311. return str;
    312. }
    313. static String[] bordesr = {"border-top:", "border-right:", "border-bottom:", "border-left:"};
    314. static String[] borderStyles = {"solid ", "solid ", "solid ", "solid ", "solid ", "solid ", "solid ", "solid ", "solid ", "solid", "solid", "solid", "solid", "solid"};
    315. private static String getBorderStyle(HSSFPalette palette, int b, short s, short t) {
    316. if (s == 0) {
    317. return bordesr[b] + borderStyles[s] + "#d0d7e5 1px;";
    318. }
    319. String borderColorStr = convertToStardColor(palette.getColor(t));
    320. borderColorStr = borderColorStr == null || borderColorStr.length() < 1 ? "#000000" : borderColorStr;
    321. return bordesr[b] + borderStyles[s] + borderColorStr + " 1px;";
    322. }
    323. private static String getBorderStyle(int b, short s, XSSFColor xc) {
    324. if (s == 0) {
    325. return bordesr[b] + borderStyles[s] + "#d0d7e5 1px;";
    326. }
    327. if (xc != null && !"".equals(xc)) {
    328. String borderColorStr = xc.getARGBHex();//t.getARGBHex();
    329. borderColorStr = borderColorStr == null || borderColorStr.length() < 1 ? "#000000" : borderColorStr.substring(2);
    330. return bordesr[b] + borderStyles[s] + borderColorStr + " 1px;";
    331. }
    332. return "";
    333. }
    334. /*
    335. * @param content 生成的excel表格标签
    336. * @param htmlPath 生成的html文件地址
    337. */
    338. private static void writeFile(String content, String htmlPath) throws UnsupportedEncodingException {
    339. File file2 = new File(htmlPath);
    340. StringBuilder sb = new StringBuilder();
    341. sb.append("<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"><title>Html Test</title></head><body>");
    342. sb.append("<div>");
    343. sb.append(content);
    344. sb.append("</div>");
    345. sb.append("</body></html>");
    346. String fileText = sb.toString();
    347. try {
    348. file2.createNewFile();//创建文件
    349. BufferedWriter out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file2), "utf-8"));
    350. // FileWriter fw=new FileWriter(file2);//在workspace工作空间里创建文件,文件名为hello
    351. out.write(fileText);
    352. } catch (IOException e) {
    353. e.printStackTrace();
    354. }
    355. }
    356. }

版权声明:本文为Glc-Blog原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/Glc-Blog/p/14179625.html