文章目录
- 一、bug类型
- 1、运算类型优化
- 将此乘法运算的一个操作数强制转换为“long”
- 将此除法运算的一个操作数强制转换为“double”
- 通过将“&0xff”添加到此表达式来阻止“int”提升
- 更正运算符“||”两侧的一个相同子表达式
- 2、变量类型优化
- 删除“字节”的装箱
- 移除"Double"的装箱
- 引入一个新变量,而不是重复使用参数“row”
- 请改用“BigDecimal.valueOf”
- 3、try-catch-finally相关
- 使用try with resources或关闭“finally”子句中的此“BufferedReader”。
-
- 从这个finally块中删除这个throw语句。
- 从finally块中删除此return语句
- 重新中断此方法,或者重新引发可以在此处捕获的“InterruptedException”
- 4、if模块相关
- 更改此条件,使其不总是计算为“true”
- 只应检查结果的标志
- 删除此条件结构或编辑其代码块,使它们不完全相同
- 无法到达该分支,因为该条件与同一“if/else-if”语句序列中的前一个条件重复
- 5、返回值相关
- 检查“read”调用的返回值,查看读取了多少字节
- 对“delete”返回的“boolean”值执行操作
- 必须使用返回值“length”
- 未分类
- 更新此作用域并删除“systemPath”
- 保存并重复使用此“Random”
- 重构这种可能导致大型输入堆栈溢出的重复
- 向该方法添加类型测试
- 该类重写“equals()”,因此也应重写“hashCode()”
- “-1”对于设置“dayOfMonth”无效
- 请确保此处应为周-年“YYYY”,而不是年“yyyy”
- 使“sdf”成为实例变量
- 删除此“return”语句或将其设为条件语句
- 引发此异常或删除此无用语句
- 重写Object.equals(Object-obj),或者完全重命名该方法以防止混淆
- 二、漏洞类型
- 更改此代码以使用更强的协议
- 在此SSL/TLS连接上启用服务器证书验证
- 使用安全填充方案
- 参考文档
一、bug类型
1、运算类型优化
将此乘法运算的一个操作数强制转换为“long”
- 解决思路把第一个运算数直接转换成很long类型即可,后面的所有运算会自动升级为long类型运算
cast one of the operands of this multiplication operation to a "long"
long l=12*60*60
long l=12L*60*60
将此除法运算的一个操作数强制转换为“double”
- 解决思路把第一个运算数直接转换成double类型即可
cast one of the operands of this division operation to a "double"
通过将“&0xff”添加到此表达式来阻止“int”提升
- java中 byte类型是用补码的:什么是原码、反码和补码
Prevent "int" promotion by adding "& 0xff" to this expression
byte high = (byte) 0B11010000;
byte low = (byte) 0B01111111;
byte result = (byte) (high << 4 | low);
byte high = (byte) 0B11010000;
byte low = (byte) 0B01111111;
byte result = (byte) ((high << 4 | low) & 0xff);
更正运算符“||”两侧的一个相同子表达式
correct one of the identical sub-expressions on both sides of operator "||"
2、变量类型优化
删除“字节”的装箱
remove the boxing of "byteint"
int byteint= Integer.parseInt(swap,16) & 0xFF;
b[j] = new Integer(byteint).byteValue();
int byteint= Integer.parseInt(swap,16) & 0xFF;
b[j] = byteint.byteValue();
移除"Double"的装箱
remove the boxing to "Double"
public static void main(String[] args) {Double record = 2.58493128;Long longValue = Double.valueOf(record * Math.pow(10, 8)).longValue();System.out.println(longValue);
}
public static void main(String[] args) {Double record = 2.58493128;Long longValue = (long)(record * Math.pow(10, 8));System.out.println(longValue);
}
引入一个新变量,而不是重复使用参数“row”
- 报错原因:方法传入的参数尽量不要修改,而是创建一个新的变量接收
introduce a new variable instead of reusing the parameter "row"
public int queryAdd (int row,int b){row=mapper.queryCount();return row+b;}
public int queryAdd (int row,int b){a=mapper.queryCount();return a+b;}
请改用“BigDecimal.valueOf”
- java中BigDecimal的介绍及使用,BigDecimal格式化,BigDecimal常见问题
Use "BigDecimal.valueOf" instead
BigDecimal dataSize = new BigDecimal(new Double(0));
BigDecimal dataSize = BigDecimal.valueOf(0);
3、try-catch-finally相关
使用try with resources或关闭“finally”子句中的此“BufferedReader”。
- 解决方式:增加一个finally语句,关闭BufferedReader流即可
- 文件流需要关闭
- 数据库连接流:Connection、Statement 、ResultSet 也都要关闭
- JDBC中关于Connection, PreparedStatement, ResultSet是否关闭的一些思考
Use try-with-resources or close this "BufferedReader" in a "finally" clause.
情形一:FileInputStream流没有关闭
try{FileInputStream fileInput=new FileInputStream("C:\\Users\\ljj\\Desktop\\test.txt");
}catch (Exception e){e.printStackTrace();
}
FileInputStream fileInput=null;
try{fileInput=new FileInputStream("C:\\Users\\ljj\\Desktop\\test.txt");
}catch (Exception e){e.printStackTrace();
}finally {if (fileInput!=null){fileInput.close();}
}
try(FileInputStream fileInput=new FileInputStream("C:\\Users\\ljj\\Desktop\\test.txt")){}catch (Exception e){e.printStackTrace();
}
从这个finally块中删除这个throw语句。
remove this throw statement from this finally block.
finally{try{reader.close;}catch (IOException e){throw e;}
}
finally{try{reader.close;}catch (IOException e){}
}
从finally块中删除此return语句
- 说明:因为finally里面写了return语句的时候,就会覆盖掉try代码块里面的return。因为finally是肯定会执行的。
remove this return statement from this finally block
static String test() throws RuntimeException{try{int i=1/0;System.out.println(i);}catch (Exception e){throw new RuntimeException("运行时异常");}finally {return "finally返回";}
}
static String test() throws RuntimeException{try{int i=1/0;System.out.println(i);}catch (Exception e){return "finally返回";}return "正常运行";
}
重新中断此方法,或者重新引发可以在此处捕获的“InterruptedException”
- 提示原因:Thread.sleep()方法会开启一个新的线程,该线程报错之后未进行中断处理
- Thread.currentThread().interrupt() 用法详解
- Thread.currentThread().interrupt()
- interrupt、interrupted 、isInterrupted 区别
either re-interrupt this method or rethrow the "InterruptedException" that can be caught here
try{Thread.sleep(3000);
}catch (InterruptedException e){e.printStackTrace();
}
try{Thread.sleep(3000);
}catch (InterruptedException e){e.printStackTrace();Thread.currentThread().interrupt();
}
4、if模块相关
更改此条件,使其不总是计算为“true”
change this condition so that it does not always evaluate to "true"
Account account=new AliyunAccount(dgInfo.getDbUsername(),dbInfo.getDbPass());
if(null==account){log.error("连接阿里云异常")throw new Exception("连接阿里云异常")
}
Account account=new AliyunAccount(dgInfo.getDbUsername(),dbInfo.getDbPass());
只应检查结果的标志
Only the sign of the result should be examined
if(a.compareTo(b)==-1){
}
if(a.compareTo(b)<0){
}
删除此条件结构或编辑其代码块,使它们不完全相同
remove this conditional structure or edit its code blocks so that they're not all the same
if(dept.equals("1")){System.out.println("这里是外联部");
} else if (dept.equals("2")) {System.out.println("这里是外联部");
}
if(dept.equals("1")){System.out.println("这里是外联部");
}
无法到达该分支,因为该条件与同一“if/else-if”语句序列中的前一个条件重复
this branch can not be reached because the condition duplicates a previous condition in the same sequence of "if/else if" statements
if(dept.equals("外联部")){System.out.println("这里是外联部");
} else if (dept.equals("外联部")) {System.out.println("这里是第二个外联部");
}
System.out.println("这里是外联部");
5、返回值相关
检查“read”调用的返回值,查看读取了多少字节
- 解决方式:【Java】文件流 BUG-Check the return value of the “read“ call to see how many bytes were read.
Check the return value of the "read" call to see how many bytes were read
inputStream.read(data)
while(-1 != inputStream.read(data)){
}
对“delete”返回的“boolean”值执行操作
do something with the "boolean" value returned by "delete"
if(csvFile.exists()){csvFile.delete();
}
if(csvFile.exists()){if (!csvFile.delete()) {log.error("文件删除失败");}
}
必须使用返回值“length”
The return value of "length" must be used
String s = "abcdefg";
s.length();
String s = "abcdefg";
int len = s.length();
未分类
更新此作用域并删除“systemPath”
update this scope and remove the "systemPath"
<dependency><groupId>cn.hutool</groupId><artifactId>hutool-all</artifactId><version>4.5.15</version><scope>system<scope><systemPath>${project.basedir}/libs/hutool-all.jar</systemPath>
</dependency>
保存并重复使用此“Random”
- 说明:这种提示是随机数应该需要重用,然后他给出的参考是这样的
- java SecureRandom.getInstanceStrong()随机数的深坑
Save and re-use this "Random"
Random rand=new Random();
Random rand=new SecureRandom();
重构这种可能导致大型输入堆栈溢出的重复
Refactor this repetition that can lead to a stack overflow for large inputs
Pattern pattern= Pattern.compile("^\\w+([-+.]\\w+)*@\\w+([-+.]\\w+)*\\.w+([-+.]\\w+)*$");
向该方法添加类型测试
Add a type test to this method
public boolean equals(Object obj) {Student student = (Student) obj;if (student.getName().equals(this.name)) return true;return false;
}
public boolean equals(Object obj) {if (obj == null) {return false;}if (this.getClass() != obj.getClass()) {return false;}Student student = (Student) obj;if (student.getName().equals(this.name)) return true;return false;
}
该类重写“equals()”,因此也应重写“hashCode()”
- 因为类中写了 equals 方法,但是却没有重写 hashCode 方法
- 解决方法:补一个hashCode()方法即可,IDEA可以通过Alt+Insert自动生成。
this class overrides "equals()" and should therefore also override "hashCode()"
“-1”对于设置“dayOfMonth”无效
- 注意:Java中月份是从0开始,即0表示1月;周日是数字1,以此类推;
"-1" it not a valid for setting "dayOfMonth"
Calendar calendar = new GregorianCalendar(1900, 0, -1);
Calendar calendar = new GregorianCalendar(1900, 0, 0);
calendar.add(Calendar.DATE, -1);
请确保此处应为周-年“YYYY”,而不是年“yyyy”
- 报错原因:很少人会用周年,除非这里需要使用周年
- YYYY表示的是当前周所在的年份:如果本周有某天跨年了那么就计入下一年
- java中日期格式“YYYY”与“yyyy”的区别
- 关于SimpleDateFormat处理时间格式容易忽视的问题
Make sure that week year "YYYY" is expected here instead of Year "yyyy"
SimpleDateFormat formater = new SimpleDateFormat("YYYY-MM-dd HH:mm:ss");
SimpleDateFormat formater = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
使“sdf”成为实例变量
- 有些类不是线程安全的,将变量生命为静态的可能会导致线程安全问题
Make "sdf" an instance variable
public static final SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
public final SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
删除此“return”语句或将其设为条件语句
Remove this "return" statement or make it conditional
public static int maxArray(int a[]){for (int i : a) {return i;}return 0;
}
public static int maxArray(int a[]){for (int i : a) {}return 0;
}
引发此异常或删除此无用语句
Throw this exception or remove this useless statement
try{System.out.println("程序正常执行!");
}catch (Exception e){System.out.println("程序非正常执行!");new RuntimeException("程序非正常执行!");
}
try{System.out.println("程序正常执行!");
}catch (Exception e){System.out.println("程序非正常执行!");throw new RuntimeException("程序非正常执行!");
}
重写Object.equals(Object-obj),或者完全重命名该方法以防止混淆
either override Object.equals(Object obj),or totally rename the method to prevent any confusion
二、漏洞类型
更改此代码以使用更强的协议
Change this code to use a stronger protocol
在此SSL/TLS连接上启用服务器证书验证
Enablle server certificate validation on this SSL/TLS connextion
@Override
public void checkClientTrusted(X509Certificate[] chain,String authType){
}
使用安全填充方案
Use a secure padding scheme
SSLContext sc=SSLContext.getInstance("SSL")
参考文档
- SonarQube扫描常见Bug、漏洞修复整理(持续更新中)
- 代码质量管理