java删除注释_删除java文件内的注释的java脚本工具类

import java.io.BufferedReader;

import java.io.File;

import java.io.FileInputStream;

import java.io.FileNotFoundException;

import java.io.FileOutputStream;

import java.io.IOException;

import java.io.InputStream;

import java.io.InputStreamReader;

import java.io.UnsupportedEncodingException;

import java.util.HashMap;

import java.util.Iterator;

import java.util.Map;

import java.util.regex.Matcher;

import java.util.regex.Pattern;

public class ClearComment {

/** ¸ùĿ¼ */

public static String rootDir = "D:\\test";

public static void main(String args[]) throws FileNotFoundException, UnsupportedEncodingException {

deepDir(rootDir);

}

public static void deepDir(String rootDir) throws FileNotFoundException, UnsupportedEncodingException {

File folder = new File(rootDir);

if (folder.isDirectory()) {

String[] files = folder.list();

for (int i = 0; i < files.length; i++) {

File file = new File(folder, files[i]);

if (file.isDirectory() && file.isHidden() == false) {

System.out.println(file.getPath());

deepDir(file.getPath());

} else if (file.isFile()) {

clearComment(file.getPath());

}

}

} else if (folder.isFile()) {

clearComment(folder.getPath());

}

}

public static void clearComment(String filePathAndName) throws FileNotFoundException, UnsupportedEncodingException {

StringBuffer buffer = new StringBuffer();

String line = null;

InputStream is = new FileInputStream(filePathAndName);

BufferedReader reader = new BufferedReader(new InputStreamReader(is, "UTF-8"));

try {

line = reader.readLine();

} catch (IOException e) {

e.printStackTrace();

}

while (line != null) {

buffer.append(line);

buffer.append("\r\n");

try {

line = reader.readLine();

} catch (IOException e) {

e.printStackTrace();

}

}

String filecontent = buffer.toString();

Map patterns = new HashMap();

patterns.put("([^:])\\/\\/.*", "$1");

patterns.put("\\s+\\/\\/.*", "");

patterns.put("^\\/\\/.*", "");

patterns.put("^\\/\\*\\*.*\\*\\/$", "");

patterns.put("\\/\\*.*\\*\\/", "");

patterns.put("/\\*(\\s*\\*\\s*.*\\s*?)*\\*\\/", "");

Iterator keys = patterns.keySet().iterator();

String key = null, value = "";

while (keys.hasNext()) {

key = keys.next();

value = patterns.get(key);

filecontent = replaceAll(filecontent, key, value);

}

System.out.println(filecontent);

try {

File f = new File(filePathAndName);

if (!f.getParentFile().exists()) {

f.getParentFile().mkdirs();

}

FileOutputStream out = new FileOutputStream(filePathAndName);

byte[] bytes = filecontent.getBytes("UTF-8");

out.write(bytes);

out.flush();

out.close();

} catch (IOException e) {

e.printStackTrace();

}

}

public static String replaceAll(String fileContent, String patternString, String replace) {

String str = "";

Matcher m = null;

Pattern p = null;

try {

p = Pattern.compile(patternString);

m = p.matcher(fileContent);

str = m.replaceAll(replace);

} catch (Exception e) {

e.printStackTrace();

} finally {

m = null;

p = null;

}

return str;

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值