编写程序,将一个Java文件转换为HTML一个文件

html-css025

编写程序,将一个Java文件转换为HTML一个文件,第1张

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])

    }

}

import sys

"""本python脚本将代码文件转换成可以在html中显示的格式

"""

def escape(text):

"""将text文本中的空格、&、<、>、(")、(')转化成对应的的字符实体,以方便在html上显示

"""

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

text=text.replace(' ',' ')

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

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

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

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

return text

def changetohtml(text):

"""将text以行为单位加上<li></li>标签

"""

lines=text.split('\n')

i=0

for line in lines:

lines[i]='<li>'+line+'</li>'

i+=1

text=''.join(lines)

return text

try:

filename=input('请输入文件名:')

filename=filename.replace('\r','')#在控制台中输入回车后文件名会多一个'\r',需要去掉

f=open(filename,encoding='utf8')

t=f.read()

f.close()

t=escape(t)

t=changetohtml(t)

f=open(filename+'生成的html代码.txt','wt',encoding='utf8')

f.write(t)

f.close()

except:

print("Unexpected error:", sys.exc_info()[0],sys.exc_info()[1])

input('按回车键退出...')