java中poi4.12怎么将excke转成html文件

html-css056

java中poi4.12怎么将excke转成html文件,第1张

java中poi4.12怎么将excke转成html文件,解决方案2:使用HTML打开Excel文件(此方法仅在用户可以打开损坏的Excel文件时才有效)

打开受损文件,然后单击选择另存为。

选择将原文件存储到其他位置并用网页的格式保存。确保选中完整的电子表格。

用excell打开保存的文件,并以Excel格式再次保存。

如果运气足够好,文件损坏就会消失

java中将java文件转换为html一个文件,先使用file类读取java文件,然后使用string进行分割、替换等操作,输出html后缀名的文件,如下代码:

import java.io.BufferedReader

import java.io.BufferedWriter

import java.io.File

import java.io.FileInputStream

import java.io.FileWriter

import java.io.IOException

import java.io.InputStreamReader

 

public class Change {

    String textHtml = ""

    String color = "#00688B"

    //读取文件

    public void ReadFile(String filePath) {

        BufferedReader bu = null

        InputStreamReader in = null

        try {

            File file = new File(filePath)

            if (file.isFile() && file.exists()) {

                in = new InputStreamReader(new FileInputStream(file))

                bu = new BufferedReader(in)

                String lineText = null

                textHtml = "<html><body>"

                while ((lineText = bu.readLine()) != null) {

                    lineText = changeToHtml(lineText)

                    lineText += "</br>"

                    textHtml += lineText

                }

                textHtml += "</html></body>"

            } else {

                System.out.println("文件不存在")

            }

        } catch (Exception e) {

            e.printStackTrace()

        } finally {

            try {

                bu.close()

            } catch (IOException e) {

                e.printStackTrace()

            }

        }

    }

 

    //输出文件

    public void writerFile(String writepath) {

        File file = new File(writepath)

        BufferedWriter output = null

        try {

            output = new BufferedWriter(new FileWriter(file))

            System.out.println(textHtml)

            output.write(textHtml)

        } catch (IOException e) {

            e.printStackTrace()

        } finally {

            try {

                output.close()

            } catch (IOException e) {

                e.printStackTrace()

            }

        }

    }

 

    //文件转换

    public String changeToHtml(String text) {

        text = text.replace("&", "&")

        text = text.replace(" ", " ")

        text = text.replace("<", "<")

        text = text.replace(">", ">")

        text = text.replace("\"", """)

        text = text.replace(" ", "    ")

        text = text.replace("public", "<b><font color='"+color+"'>public</font></b>")

        text = text.replace("class", "<b><font color='"+color+"'>class</font></b>")

        text = text.replace("static", "<b><font color='"+color+"'>static</font></b>")

        text = text.replace("void", "<b><font color='"+color+"'>void</font></b>")

        String t = text.replace("//", "<font color=green>//")

        if (!text.equals(t)) {

            System.out.println("t:"+t)

            text = t + "</font>"

        }

        return text

    }

 

    public static void main(String[] args) {

        System.out.println("第一个参数为读取文件路径,第二个参数为生成文件路径")

        if(args.length<1){

            System.out.println("请<a href="https://www.baidu.com/s?wd=%E8%BE%93%E5%85%A5%E6%96%87%E4%BB%B6&tn=44039180_cpr&fenlei=mv6quAkxTZn0IZRqIHckPjm4nH00T1Y3P16znjKBn1uWPvnzPWcY0ZwV5Hcvrjm3rH6sPfKWUMw85HfYnjn4nH6sgvPsT6K1TL0qnfK1TL0z5HD0IgF_5y9YIZ0lQzqlpA-bmyt8mh7GuZR8mvqVQL7dugPYpyq8Q1DsPjTdnWTvPjT3n1T4n1ckn1b" target="_blank" class="baidu-highlight">输入文件</a>路径")

            return 

        }else if(args.length<2){

            System.out.println("请输入生成文件")

            return

        }

        Change c = new Change()

        c.ReadFile(args[0])

        c.writerFile(args[1])

    }

}