eclipse 删除所有注释及空白行

Ctrl+F 删除java注释: /\*{1,2}[\s\S]*?\*/
Ctrl+F 删除空白行: ^\s*\n
Ctrl+F 删除xml注释: <!-[\s\S]*?-->
选择正则表达式,替换全部即可。

你可能感兴趣的:(java,注释)