java 什么方法可以把txt文件转化为html文件

java 什么方法可以把txt文件转化为html文件,第1张

参考如下例子,就可以轻松将txt文件转化为html文件:

private static String txtToHtml(String s) {

StringBuilder builder = new StringBuilder()

boolean previousWasASpace = false

for (char c : s.toCharArray()) {

if (c == ' ') {

if (previousWasASpace) {

builder.append(" ")

previousWasASpace = false

continue

}

previousWasASpace = true

} else {

previousWasASpace = false

}

switch (c) {

case '<':

builder.append("<")

break

case '>':

builder.append(">")

break

case '&':

builder.append("&")

break

case '"':

builder.append(""")

break

case '\n':

builder.append("<br>")

break

// We need Tab support here, because we print StackTraces as HTML

case '\t':

builder.append(" ")

break

default:

builder.append(c)

}

}

String converted = builder.toString()

String str = "(?i)\\b((?:https?://|www\\d{0,3}[.]|[a-z0-9.\\-]+[.][a-z]{2,4}/)(?:[^\\s()<>]+|\\(([^\\s()<>]+|(\\([^\\s()<>]+\\)))*\\))+(?:\\(([^\\s()<>]+|(\\([^\\s()<>]+\\)))*\\)|[^\\s`!()\\[\\]{}:\'\".,<>?«»“”‘’]))"

Pattern patt = Pattern.compile(str)

Matcher matcher = patt.matcher(converted)

converted = matcher.replaceAll("<a href=\"$1\">$1</a>")

return converted

}

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

    }

}

使用Java中的File类,url为文件的绝对地址,str为输入的字符串内容。代码如下图所示:String str="i love china!" File txt=new File("url") if(!txt.exists()){ txt.createNewFile() } byte bytes[]=new byte[512] bytes=str.getBytes() //新加的 int b=str.length() //改 FileOutputStream fos=new FileOutputStream(txt) fos.write(bytes,0,b) fos.close()


欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/zaji/7285777.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-03
下一篇 2023-04-03

发表评论

登录后才能评论

评论列表(0条)

保存